Class: Containers::RubySplayTreeMap::Node
- Inherits:
-
Struct
- Object
- Struct
- Containers::RubySplayTreeMap::Node
- Defined in:
- lib/containers/splay_tree_map.rb
Instance Attribute Summary collapse
-
#key ⇒ Object
Returns the value of attribute key.
-
#left ⇒ Object
Returns the value of attribute left.
-
#right ⇒ Object
Returns the value of attribute right.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Attribute Details
#key ⇒ Object
Returns the value of attribute key
40 41 42 |
# File 'lib/containers/splay_tree_map.rb', line 40 def key @key end |
#left ⇒ Object
Returns the value of attribute left
40 41 42 |
# File 'lib/containers/splay_tree_map.rb', line 40 def left @left end |
#right ⇒ Object
Returns the value of attribute right
40 41 42 |
# File 'lib/containers/splay_tree_map.rb', line 40 def right @right end |
#value ⇒ Object
Returns the value of attribute value
40 41 42 |
# File 'lib/containers/splay_tree_map.rb', line 40 def value @value end |