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
10 11 12 |
# File 'lib/containers/deque.rb', line 10 def left @left end |
#obj ⇒ Object
Returns the value of attribute obj
10 11 12 |
# File 'lib/containers/deque.rb', line 10 def obj @obj end |
#right ⇒ Object
Returns the value of attribute right
10 11 12 |
# File 'lib/containers/deque.rb', line 10 def right @right end |