Click or drag to resize

ConcurrentTokenizedLinkedListTKey, TValue Class

Concurrent linked list with the restriction that its members are unique, i.e. an item identified by a key can appear only once in the list.
Inheritance Hierarchy
SystemObject
  Altaxo.CollectionsConcurrentTokenizedLinkedListTKey, TValue

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public class ConcurrentTokenizedLinkedList<TKey, TValue>

Type Parameters

TKey
The type of the key (token).
TValue
The type of the value.

The ConcurrentTokenizedLinkedListTKey, TValue type exposes the following members.

Constructors
 NameDescription
Public methodConcurrentTokenizedLinkedListTKey, TValue Initializes a new instance of the ConcurrentTokenizedLinkedListTKey, TValue class.
Top
Properties
 NameDescription
Public propertyCount Gets the number of items in the list.
Top
Methods
 NameDescription
Public methodClear Clears all items in the list.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodTryAddFirst Tries to add an item as the first item of the list.
Public methodTryAddLast Tries to add an item as the last item of the list.
Public methodTryTakeFirst Tries to take the first item from the list.
Public methodTryTakeLast Tries to take the last item from the list.
Top
See Also