class Linkedlist::SinglyNode(T)

Defined in:

linkedlist/singly.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(data : T, next __arg0 : SinglyNode(T) | Nil) #

Initializes a node with data and next pointer


[View source]

Instance Method Detail

def data #

[View source]
def data=(data : T) #

[View source]
def next #

[View source]
def next=(next __arg0 : Nil | Linkedlist::SinglyNode(T)) #

[View source]