Class: Nodo
- Inherits:
-
Struct
- Object
- Struct
- Nodo
- Defined in:
- lib/Alimento/lista_doble.rb
Instance Attribute Summary collapse
-
#next_node ⇒ Object
Returns the value of attribute next_node.
-
#prev_node ⇒ Object
Returns the value of attribute prev_node.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Attribute Details
#next_node ⇒ Object
Returns the value of attribute next_node
1 2 3 |
# File 'lib/Alimento/lista_doble.rb', line 1 def next_node @next_node end |
#prev_node ⇒ Object
Returns the value of attribute prev_node
1 2 3 |
# File 'lib/Alimento/lista_doble.rb', line 1 def prev_node @prev_node end |
#value ⇒ Object
Returns the value of attribute value
1 2 3 |
# File 'lib/Alimento/lista_doble.rb', line 1 def value @value end |