Name | Description | |
---|---|---|
Append | Overloaded. Append element at the end of seq. | |
Concat | Overloaded. Gets an enumerable object that contains first element and then elements of elements, in this order. | |
ContainsAll<T> | Determine if superset contains all elements of subset. | |
ContainsNullElement<T> | Returns true if the sequence seq contains a null element. | |
Distinct<T,TKey> | Returns distinct elements from a sequence seq by using the default equality comparer of the type TKey, on which items are projected through funcProjection. | |
Except<T> | Produces the set seq excluding elementExcluded. The equality test relies on the Equals() method. | |
FirstOrAnyOrDefault<T> | Returns the first element of a sequence satisfying predicate, or the first element of the sequence, or a default value if no element is found. | |
IndexOf<T> | Determines the index of a specific item in readOnlyList. | |
ToEnumerable<TElement> | Gets an enumerable object that contains only the single element element. | |
ToMultiKeyLookup<T,TKey> | Creates a Lookup from an IEnumerable according to a specified key selector function. The funtion can return zero, one or several keys for an element.. | |
ToReadOnlyClonedCollection<T> | Creates a IReadOnlyCollection cloned collection around sequence. | |
ToReadOnlyClonedList<T> | Creates a IReadOnlyCollection cloned collection around sequence. | |
ToReadOnlyWrappedCollection<T> | Creates a IReadOnlyCollection wrapper collection around collection. | |
ToReadOnlyWrappedList<T> | Creates a IReadOnlyCollection wrapper collection around list. | |
TryAdd<TKey,TValue> | Add a pair of key and value to dico, only if dico doesn't already contain the key. |