Class: Algorithms::Containers::RubyDeque::Node
- Inherits:
-
Struct
- Object
- Struct
- Algorithms::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
12 13 14 |
# File 'lib/containers/deque.rb', line 12 def left @left end |
#obj ⇒ Object
Returns the value of attribute obj
12 13 14 |
# File 'lib/containers/deque.rb', line 12 def obj @obj end |
#right ⇒ Object
Returns the value of attribute right
12 13 14 |
# File 'lib/containers/deque.rb', line 12 def right @right end |