Name | Description | |
---|---|---|
NChainList<T> Constructor | Overloaded. |
The following tables list the members exposed by NChainList<T>.
Name | Description | |
---|---|---|
NChainList<T> Constructor | Overloaded. |
Name | Description | |
---|---|---|
Chain | Gets the owner chain | |
Count | Gets the count of items | |
Item | Gets/set the item at the specified index. |
Name | Description | |
---|---|---|
Add | Adds (appends) the specified item | |
Clear | Removes all items from the set. | |
Contains | Queries whether the specified item is contained in this object. | |
CopyTo | Copies all items of this set to the specified array, starting from the specified array index. | |
GetIterator | Gets an iterator that iterates through the items in forward order. | |
GetReverseIterator | Gets an iterator that iterates through the items in a reverse order. | |
IndexOf | Overloaded. Gets the first index of the item | |
Insert | Inserts the item at the specified index | |
LastIndexOf | Overloaded. Gets the last index of the specified item | |
PeekBack | Returns the last item from the deque, without removing it. | |
PeekFront | Returns the first item from the deque, without removing it. | |
PopBack | Removes and returns the last item from the deque. | |
PopFront | Removes and returns the first item from the deque. | |
PushBack | Pushes the item at the back of the deque (makes it the last item in the deque) | |
PushFront | Pushes the item at the front of the deque (makes it the first item in the deque) | |
Remove | Overloaded. Removes the first occurrence of the specified item, if any | |
RemoveAll | Removes all occurrence of the specified item. | |
RemoveAt | Removes the item at the specified index | |
RemoveLast | Overloaded. Removes the last occurrence of the specified item. | |
ToArray | Converts this set to an array. |