Press on the image to return to the main documentation page.
CollectionsExtra
Written by Andrew Graham
This library provides an implementation of a doubly linked list that can be used as a stack, queue, or double-ended queue.
It also includes an ArraysExtra object that allows arrays to be partially or full copied, cloned, partially or fully filled with a given value, sorted and searched. ArraysExtra can also return, using the ToString method, a comma separated string representation of the contents of an array of Strings or a primitive type.
This ArraysExtra object allows arrays to be partially or fully copied, cloned, partially or fully filled with a given value, sorted and searched. It can also return, using the ToString method, a comma separated string representation of the contents of an array of Strings or a primitive type.
The LinkedList object provides uniformly named methods to get, remove and insert an element at the beginning and end of the list. These operations allow linked lists to be used as a stack, queue, or double-ended queue. All of the operations perform as would be expected for a doubly-linked list. Operations that index into the list will traverse the list from the beginning or the end, whichever is closer to the specified index.