[]
Represents an IList providing a fast search for the contained elements.
public class FastList : IList, ICollection, IEnumerable
Name | Description |
---|---|
FastList() |
Name | Description |
---|---|
InnerList | Gets the List<T> used internally to store the elements of the current FastList. |
Name | Description |
---|---|
Add(IComparable) | Adds an object implementing the IComparable interface to the current list. |
Clear() | Clears the current FastList. |
FindObjectIndex(object, out int) | Performs a fast search for the specified object within the current FastList. |
IndexOf(object) | Returns the index of the specified object in the current FastList. (Performs a fast search using the FindObjectIndex(object, out int) method.) |
Insert(int, object) | Inserts the element at the specified index. |
Remove(object) | Removes the specified element from the current list. |
RemoveAt(int) | Removes the element at the specified index from the current list. |