Class: Node
- Inherits:
-
Struct
- Object
- Struct
- Node
- Defined in:
- lib/prct06/list.rb
Instance Attribute Summary collapse
-
#nexst ⇒ Object
Returns the value of attribute nexst.
-
#prev ⇒ Object
Returns the value of attribute prev.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Attribute Details
#nexst ⇒ Object
Returns the value of attribute nexst
1 2 3 |
# File 'lib/prct06/list.rb', line 1 def nexst @nexst end |
#prev ⇒ Object
Returns the value of attribute prev
1 2 3 |
# File 'lib/prct06/list.rb', line 1 def prev @prev end |
#value ⇒ Object
Returns the value of attribute value
1 2 3 |
# File 'lib/prct06/list.rb', line 1 def value @value end |