Class: Containers::RubyDeque::Node
- Inherits:
-
Struct
- Object
- Struct
- Containers::RubyDeque::Node
- Defined in:
- lib/containers/deque.rb
Instance Attribute Summary collapse
-
#left ⇒ Object
Returns the value of attribute left.
-
#obj ⇒ Object
Returns the value of attribute obj.
-
#right ⇒ Object
Returns the value of attribute right.
Instance Attribute Details
#left ⇒ Object
Returns the value of attribute left
32 33 34 |
# File 'lib/containers/deque.rb', line 32 def left @left end |
#obj ⇒ Object
Returns the value of attribute obj
32 33 34 |
# File 'lib/containers/deque.rb', line 32 def obj @obj end |
#right ⇒ Object
Returns the value of attribute right
32 33 34 |
# File 'lib/containers/deque.rb', line 32 def right @right end |