Class LooselyLinkedListNode<T>
Inheritance
LooselyLinkedListNode<T>
Assembly: NMF.Collections.dll
Syntax
public class LooselyLinkedListNode<T>
Type Parameters
Constructors
|
Edit this page
View Source
LooselyLinkedListNode(T)
Declaration
public LooselyLinkedListNode(T value)
Parameters
Type |
Name |
Description |
T |
value |
|
Properties
|
Edit this page
View Source
FromHere
Declaration
public IEnumerable<T> FromHere { get; }
Property Value
|
Edit this page
View Source
Next
Declaration
public LooselyLinkedListNode<T> Next { get; set; }
Property Value
|
Edit this page
View Source
Value
Declaration
public T Value { get; set; }
Property Value
Methods
|
Edit this page
View Source
CreateDummyFor(LooselyLinkedListNode<T>)
Declaration
public static LooselyLinkedListNode<T> CreateDummyFor(LooselyLinkedListNode<T> node)
Parameters
Returns
|
Edit this page
View Source
CutNext()
Declaration