CollectionChangedHandler<T> CollectionChanged |
The change event. Will be raised for every change operation on the collection.
|
CollectionClearedHandler<T> CollectionCleared |
The change event. Will be raised for every change operation on the collection.
|
ItemInsertedHandler<T> ItemInserted |
The item added event. Will be raised for every individual addition to the collection.
|
ItemRemovedAtHandler<T> ItemRemovedAt |
The item removed event. Will be raised for every individual removal from the collection.
|
ItemsAddedHandler<T> ItemsAdded |
The item added event. Will be raised for every individual addition to the collection.
|
ItemsRemovedHandler<T> ItemsRemoved |
The item removed event. Will be raised for every individual removal from the collection.
|
bool All(Fun<T,bool> filter) |
Check if all items in the wrapped enumerable satisfies a specific predicate.
Returns: | True if all items satisfies the predicate | Parameters: | filter: | A filter delegate
() defining the predicate |
|
void Apply(Act<T> a) |
Apply a delegate to all items of the wrapped enumerable.
Parameters: | a: | The delegate to apply |
|
T Choose() |
Choose some item of this collection.
|
void CopyTo(T[] a, int i) |
Copy the items of the wrapped collection to an array
Parameters: | a: | The array | i: | Starting offset |
|
bool Exists(Fun<T,bool> filter) |
Check if there exists an item that satisfies a
specific predicate in the wrapped enumerable.
Returns: | True is such an item exists | Parameters: | filter: | A filter delegate
() defining the predicate |
|
IEnumerable<T> Filter(Fun<T,bool> filter) |
Create an enumerable, enumerating the items of this collection that satisfies
a certain condition.
Returns: | The filtered enumerable | Parameters: | filter: | The T->bool filter delegate defining the condition |
|
bool Find(Fun<T,bool> filter, out T item) | Returns: | | Parameters: | filter: | | item: | |
|
F bool Show(System.Text.StringBuilder stringbuilder, ref int rest, System.IFormatProvider formatProvider) | Returns: | | Parameters: | stringbuilder: | | formatProvider: | | rest: | |
|
T[] ToArray() |
Create an array from the items of the wrapped collection
|
F string ToString(string format, System.IFormatProvider formatProvider) | Returns: | | Parameters: | format: | | formatProvider: | |
|