class Linkedlist::SinglyNode(T)

Defined in:

linkedlist/singly.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(data : T, next : Linkedlist::SinglyNode(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]