Show / Hide Table of Contents

Class LooselyLinkedListNode<T>

Inheritance
object
LooselyLinkedListNode<T>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: NMF.Collections.Generic
Assembly: NMF.Collections.dll
Syntax
public class LooselyLinkedListNode<T>
Type Parameters
Name Description
T

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
Type Description
IEnumerable<T>
| Edit this page View Source

Next

Declaration
public LooselyLinkedListNode<T> Next { get; set; }
Property Value
Type Description
LooselyLinkedListNode<T>
| Edit this page View Source

Value

Declaration
public T Value { get; set; }
Property Value
Type Description
T

Methods

| Edit this page View Source

CreateDummyFor(LooselyLinkedListNode<T>)

Declaration
public static LooselyLinkedListNode<T> CreateDummyFor(LooselyLinkedListNode<T> node)
Parameters
Type Name Description
LooselyLinkedListNode<T> node
Returns
Type Description
LooselyLinkedListNode<T>
| Edit this page View Source

CutNext()

Declaration
public void CutNext()
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX