Class: Nodo
- Inherits:
-
Struct
- Object
- Struct
- Nodo
- Defined in:
- lib/tdd/Lista.rb
Overview
Struct de un nodo para insertar en 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_
2 3 4 |
# File 'lib/tdd/Lista.rb', line 2 def Next_ @Next_ end |
#prev ⇒ Object
Returns the value of attribute prev
2 3 4 |
# File 'lib/tdd/Lista.rb', line 2 def prev @prev end |
#value ⇒ Object
Returns the value of attribute value
2 3 4 |
# File 'lib/tdd/Lista.rb', line 2 def value @value end |