Class: Nodo
- Inherits:
-
Struct
- Object
- Struct
- Nodo
- Defined in:
- lib/referencia/lista.rb
Overview
Clase para representar la Lista
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
3 4 5 |
# File 'lib/referencia/lista.rb', line 3 def next_node @next_node end |
#prev_node ⇒ Object
Returns the value of attribute prev_node
3 4 5 |
# File 'lib/referencia/lista.rb', line 3 def prev_node @prev_node end |
#value ⇒ Object
Returns the value of attribute value
3 4 5 |
# File 'lib/referencia/lista.rb', line 3 def value @value end |