Class: Node
- Inherits:
-
Struct
- Object
- Struct
- Node
- Defined in:
- lib/refbiblio/lista.rb
Overview
clase que representa la lista enlazada
Instance Attribute Summary collapse
-
#before ⇒ Object
Returns the value of attribute before.
-
#next ⇒ Object
Returns the value of attribute next.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Attribute Details
#before ⇒ Object
Returns the value of attribute before
2 3 4 |
# File 'lib/refbiblio/lista.rb', line 2 def before @before end |
#next ⇒ Object
Returns the value of attribute next
2 3 4 |
# File 'lib/refbiblio/lista.rb', line 2 def next @next end |
#value ⇒ Object
Returns the value of attribute value
2 3 4 |
# File 'lib/refbiblio/lista.rb', line 2 def value @value end |