EquatableListT Methods |
The EquatableListT generic type exposes the following members.
| Name | Description | |
|---|---|---|
| Add(IEnumerableT) | ||
| Add(T) | ||
| AddFromDelimitedString | ||
| AddIfNotPresent |
Adds value to collection if it is not already present.
| |
| Clear | ||
| Contains | ||
| ContainsCommonItems |
Returns true if the collection contains one or more items that is present in source.
| |
| ContainsExactly(T) |
Checks if the list contains a single value which is the one specified.
| |
| ContainsExactly(EquatableListT) |
Checks if the list contains exactly the same items as source.
Duplicate values are, however, ignored.
The items doesn't have to occur in the same order.
| |
| ContainsOrEmpty |
Returns true if the list is empty or if it contains a specific value.
| |
| CopyTo | ||
| Equals | (Overrides ObjectEquals(Object).) | |
| Exists |
Does the collection contains elements matching the conditions defined by the predicate. Similar to List>T<.Exists.
| |
| Find | ||
| FindAll | ||
| FindIndex | ||
| FindLast | ||
| FindLastIndex | ||
| ForEach | ||
| GetCommonItems |
Returns the elements that are contained in source.
| |
| GetEnumerator | ||
| GetHashCode |
Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table.
(Overrides ObjectGetHashCode.) | |
| GetUncommonItems |
Returns the elements that are NOT contained in source.
| |
| IndexOf | ||
| Insert | ||
| Remove | ||
| RemoveAt | ||
| RemoveDuplets |
Sorts the list (ascending) and removes duplets.
| |
| Sort | ||
| SplitValues |
Splits the list into a number of smaller lists.
| |
| ToArray | ||
| ToList | ||
| ToString | (Overrides ObjectToString.) | |
| ToString(String) | ||
| TrueForAll |
Does all elements in the collection matching the conditions defined by the predicate. Similar to List>T<.TrueForAll
|
| Name | Description | |
|---|---|---|
| ContainsSameElementsT |
Checks if two collections have same length and exactly same elements, but ignores the order.
(Defined by EnumerableExtensions.) | |
| OrderBySequenceT, TId |
Sorts the elements of a sequence based
on the sorting of another sequence
(Defined by LinqExtensions.) | |
| OrderByWithDirectionT, TKey |
Sorts the elements of a sequence according to the key
with the provided order
(Defined by LinqExtensions.) | |
| ToBool |
Converts object to boolean.
(Defined by ObjectExtensions.) | |
| ToDateTime |
Converts object to DateTime.
(Defined by ObjectExtensions.) | |
| ToInt |
Converts object to integer.
(Defined by ObjectExtensions.) |
| Name | Description | |
|---|---|---|
| IListAdd | Adds an item to the IList. | |
| IListContains | Determines whether the IList contains a specific value. | |
| ICollectionCopyTo | Copies the elements of the ICollection to an Array, starting at a particular Array index. | |
| IEnumerableGetEnumerator | Returns an enumerator that iterates through a collection. | |
| IListIndexOf | Determines the index of a specific item in the IList. | |
| IListInsert | Inserts an item to the IList at the specified index. | |
| IListRemove | Removes the first occurrence of a specific object from the IList. |