The RCLinkedList<(Of <(<'T>)>)> type exposes the following members.

Constructors

  NameDescription
Public methodRCLinkedList<(Of <(<'T>)>)>()()()()
Initializes a new instance of the RCLinkedList<(Of <(<'T>)>)> class
Public methodRCLinkedList<(Of <(<'T>)>)>(UInt32)
Initializes a new instance of the RCLinkedList<(Of <(<'T>)>)> class
Public methodRCLinkedList<(Of <(<'T>)>)>(IItemPool<(Of <<'(RCLinkedListNode<(Of <<'(T>)>>)>)>>))
Constructor for RCLinkedList passing a IItemPool of type RCLinkedListNode to be used for pooling nodes. For best results initialize the pool with the max capacity needed.

Methods

  NameDescription
Public methodAddFirst(T)
Add a value to the beginning/front of the list
Public methodAddFirst(RCLinkedListNode<(Of <<'(T>)>>))
Add a RCLinkedListNode to the front/beginning of the list
Public methodAddLast(T)
Add a value to the end of the list
Public methodAddLast(RCLinkedListNode<(Of <<'(T>)>>))
Add a RCLinkedListNode to the end of the list
Public methodClear
Remove all elements from the list, nodes are returned to the free pool
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFind
Finds an item in the linked list. Pass in a lambda expression that takes a type of the item in the linked list and compares it with what you want to find lambda should return true if found, false otherwise
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Remove the item from the linked list. If the item is in the list more than once it removes the first one with the value
Public methodRemoveFirst
Remove the first item from the list
Public methodRemoveLast
Remoe the last item from the list
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)

Properties

  NameDescription
Public propertyFirst
Public propertyLast

See Also