class Node

Class Node Defines the container of each element of the list @!attribute r nodo

Attributes

nodo[R]

Public Class Methods

new(val) click to toggle source

Initialization of a node @param val [Object] Value to store at the node

# File lib/nutrientes/list.rb, line 18
def initialize(val) 
    @nodo = @@estructura.new(val, nil, nil)
end