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
19 20 21 |
# File 'lib/containers/splay_tree_map.rb', line 19 def key @key end |
#left ⇒ Object
Returns the value of attribute left
19 20 21 |
# File 'lib/containers/splay_tree_map.rb', line 19 def left @left end |
#right ⇒ Object
Returns the value of attribute right
19 20 21 |
# File 'lib/containers/splay_tree_map.rb', line 19 def right @right end |
#value ⇒ Object
Returns the value of attribute value
19 20 21 |
# File 'lib/containers/splay_tree_map.rb', line 19 def value @value end |