Class: Node
- Inherits:
-
Struct
- Object
- Struct
- Node
- Defined in:
- lib/alimentos/lista.rb
Overview
Esta clase representa la creación de un nodo para la clase Lista
Instance Attribute Summary collapse
-
#next ⇒ Object
Returns the value of attribute next.
-
#prev ⇒ Object
Returns the value of attribute prev.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Attribute Details
#next ⇒ Object
Returns the value of attribute next
5 6 7 |
# File 'lib/alimentos/lista.rb', line 5 def next @next end |
#prev ⇒ Object
Returns the value of attribute prev
5 6 7 |
# File 'lib/alimentos/lista.rb', line 5 def prev @prev end |
#value ⇒ Object
Returns the value of attribute value
5 6 7 |
# File 'lib/alimentos/lista.rb', line 5 def value @value end |