Table of Contents

Class CircularLinkedList<T>.Node

Namespace
AlgorithmsSW.List
Assembly
AlgorithmsSW.dll
public sealed record CircularLinkedList<T>.Node : IEquatable<CircularLinkedList<T>.Node>
Inheritance
CircularLinkedList<T>.Node
Implements
Inherited Members
Extension Methods

Constructors

Node(T, Node)

public Node(T item, CircularLinkedList<T>.Node nextNode = null)

Parameters

item T
nextNode CircularLinkedList<T>.Node

Fields

Item

public readonly T Item

Field Value

T

NextNode

public CircularLinkedList<T>.Node NextNode

Field Value

CircularLinkedList<T>.Node