class RedBlack::Node(V)
- RedBlack::Node(V)
- Reference
- Object
Defined in:
rb_tree.crConstructors
Instance Method Summary
- #black!
- #black?(*args, **options)
- #black?(*args, **options, &)
- #color
- #color=(color : RedBlack::Color)
- #left
- #left=(left : RedBlack::Leaf | RedBlack::Node(V))
- #parent
- #parent=(parent : RedBlack::Leaf | RedBlack::Node(V))
- #red!
- #red?(*args, **options)
- #red?(*args, **options, &)
- #right
- #right=(right : RedBlack::Leaf | RedBlack::Node(V))
- #to_s(io)
- #val
- #val=(val : V)