Class: Algorithms::Containers::RubySplayTreeMap::Node
- Inherits:
-
Struct
- Object
- Struct
- Algorithms::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
21 22 23 |
# File 'lib/containers/splay_tree_map.rb', line 21 def key @key end |
#left ⇒ Object
Returns the value of attribute left
21 22 23 |
# File 'lib/containers/splay_tree_map.rb', line 21 def left @left end |
#right ⇒ Object
Returns the value of attribute right
21 22 23 |
# File 'lib/containers/splay_tree_map.rb', line 21 def right @right end |
#value ⇒ Object
Returns the value of attribute value
21 22 23 |
# File 'lib/containers/splay_tree_map.rb', line 21 def value @value end |