Enhanced C#
Loyc library documentation
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
List of all members
Loyc.Collections.ICollectionExWithChangeEvents< T > Interface Template Reference

Combines ICollectionEx{T} with INotifyListChanging{T, ICollection{T}}. and INotifyListChanged{T, ICollection{T}}. This exists for completeness; as of 2020/12 there are no implementations. More...


Source file:
Inheritance diagram for Loyc.Collections.ICollectionExWithChangeEvents< T >:
Loyc.Collections.ICollectionEx< T > Loyc.Collections.INotifyListChanging< T, TCollection > Loyc.Collections.INotifyListChanged< T, TCollection > Loyc.Collections.ICollectionImpl< T > Loyc.Collections.IAddRange< in T > Loyc.Collections.IIsEmpty Loyc.Collections.ICollectionSource< T > Loyc.Collections.ICollectionSink< in T > Loyc.Collections.ICollectionAndReadOnly< T > Loyc.Collections.ICount Loyc.Collections.IContains< in T > Loyc.Collections.IAdd< in T >

Remarks

Combines ICollectionEx{T} with INotifyListChanging{T, ICollection{T}}. and INotifyListChanged{T, ICollection{T}}. This exists for completeness; as of 2020/12 there are no implementations.

Additional Inherited Members

- Properties inherited from Loyc.Collections.ICount
int Count [get]
 Gets the number of items in the collection. More...
 
- Properties inherited from Loyc.Collections.IIsEmpty
bool IsEmpty [get]
 
- Public Member Functions inherited from Loyc.Collections.ICollectionSource< T >
void CopyTo (T[] array, int arrayIndex)
 Copies the elements of the collection to an Array, starting at a particular array index. More...
 
- Public Member Functions inherited from Loyc.Collections.IContains< in T >
bool Contains (T item)
 Returns true if and only if the collection contains the specified item. More...
 
- Public Member Functions inherited from Loyc.Collections.ICollectionSink< in T >
void Clear ()
 
bool Remove (T item)
 
- Public Member Functions inherited from Loyc.Collections.IAdd< in T >
void Add (T item)
 
- Public Member Functions inherited from Loyc.Collections.IAddRange< in T >
void AddRange (IEnumerable< T > e)
 
void AddRange (IReadOnlyCollection< T > s)
 
- Events inherited from Loyc.Collections.INotifyListChanging< T, TCollection >
ListChangingHandler< T,
TCollection > 
ListChanging
 Occurs when the collection associated with this interface is about to change. More...
 
- Events inherited from Loyc.Collections.INotifyListChanged< T, TCollection >
ListChangingHandler< T,
TCollection > 
ListChanged
 Occurs when the collection associated with this interface has changed. More...