Class: Nodo

Inherits:
Struct
  • Object
show all
Defined in:
lib/menu/list.rb

Overview

Struct Nodo que contiene un valor (:value) , su siguiente nodo enlazado o nil (:next) y su previo nodo enlazado o nil (:prev)

Instance Attribute Summary collapse

Instance Attribute Details

#nextObject

Returns the value of attribute next

Returns:

  • (Object)

    the current value of next



3
4
5
# File 'lib/menu/list.rb', line 3

def next
  @next
end

#prevObject

Returns the value of attribute prev

Returns:

  • (Object)

    the current value of prev



3
4
5
# File 'lib/menu/list.rb', line 3

def prev
  @prev
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



3
4
5
# File 'lib/menu/list.rb', line 3

def value
  @value
end