class Linkedlist::DoublyNode(T)

Defined in:

linkedlist/doubly.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(data : T, prev : Linkedlist::DoublyNode(T)?, next : Linkedlist::DoublyNode(T)?) #

Initializes a node with data and next pointer


[View source]

Instance Method Detail

def data #

[View source]
def data=(data) #

[View source]
def next #

[View source]
def next=(next) #

[View source]
def prev #

[View source]
def prev=(prev) #

[View source]