Class: Algorithmable::DataStructs::Deque::Node
- Inherits:
-
Struct
- Object
- Struct
- Algorithmable::DataStructs::Deque::Node
- Defined in:
- lib/algorithmable/data_structs/deque.rb
Instance Attribute Summary collapse
-
#item ⇒ Object
Returns the value of attribute item.
-
#next ⇒ Object
Returns the value of attribute next.
-
#prev ⇒ Object
Returns the value of attribute prev.
Instance Attribute Details
#item ⇒ Object
Returns the value of attribute item
7 8 9 |
# File 'lib/algorithmable/data_structs/deque.rb', line 7 def item @item end |
#next ⇒ Object
Returns the value of attribute next
7 8 9 |
# File 'lib/algorithmable/data_structs/deque.rb', line 7 def next @next end |
#prev ⇒ Object
Returns the value of attribute prev
7 8 9 |
# File 'lib/algorithmable/data_structs/deque.rb', line 7 def prev @prev end |