|
LLVM 23.0.0git
|
#include "llvm/ADT/ImmutableSet.h"
Public Types | |
| using | key_type_ref = typename ImutInfo::key_type_ref |
| using | value_type = typename ImutInfo::value_type |
| using | value_type_ref = typename ImutInfo::value_type_ref |
| using | Factory = ImutAVLFactory<ImutInfo> |
| using | iterator = ImutAVLTreeInOrderIterator<ImutInfo> |
Public Member Functions | |
| ImutAVLTree * | getLeft () const |
| Return a pointer to the left subtree. | |
| ImutAVLTree * | getRight () const |
| Return a pointer to the right subtree. | |
| unsigned | getHeight () const |
| Returns the height of the tree. A tree with no subtrees has a height of 1. | |
| const value_type & | getValue () const |
| Returns the data value associated with the tree node. | |
| ImutAVLTree * | find (key_type_ref K) |
| Finds the subtree associated with the specified key value. | |
| ImutAVLTree * | getMaxElement () |
| Find the subtree associated with the highest ranged key value. | |
| unsigned | size () const |
| Returns the number of nodes in the tree, which includes both leaves and. | |
| iterator | begin () const |
| Returns an iterator that iterates over the nodes of the tree in an inorder traversal. | |
| iterator | end () const |
| Returns an iterator for the tree that denotes the end of an inorder traversal. | |
| bool | isElementEqual (value_type_ref V) const |
| bool | isElementEqual (const ImutAVLTree *RHS) const |
| bool | isEqual (const ImutAVLTree &RHS) const |
| Compares two trees for structural equality and returns true if they are equal. | |
| bool | isNotEqual (const ImutAVLTree &RHS) const |
| Compares two trees for structural inequality. | |
| bool | contains (key_type_ref K) |
| Returns true if this tree contains a subtree (node) that has an data element that matches the specified key. | |
| unsigned | validateTree () const |
| A utility method that checks that the balancing and ordering invariants of the tree are satisfied. | |
| void | retain () |
| void | release () |
| void | destroy () |
Friends | |
| class | ImutAVLFactory< ImutInfo > |
| class | ImutIntervalAVLFactory< ImutInfo > |
Definition at line 45 of file ImmutableSet.h.
| using llvm::ImutAVLTree< ImutInfo >::Factory = ImutAVLFactory<ImutInfo> |
Definition at line 50 of file ImmutableSet.h.
| using llvm::ImutAVLTree< ImutInfo >::iterator = ImutAVLTreeInOrderIterator<ImutInfo> |
Definition at line 51 of file ImmutableSet.h.
| using llvm::ImutAVLTree< ImutInfo >::key_type_ref = typename ImutInfo::key_type_ref |
Definition at line 47 of file ImmutableSet.h.
| using llvm::ImutAVLTree< ImutInfo >::value_type = typename ImutInfo::value_type |
Definition at line 48 of file ImmutableSet.h.
| using llvm::ImutAVLTree< ImutInfo >::value_type_ref = typename ImutInfo::value_type_ref |
Definition at line 49 of file ImmutableSet.h.
|
inline |
Returns an iterator that iterates over the nodes of the tree in an inorder traversal.
The returned iterator thus refers to the tree node with the minimum data element.
Definition at line 112 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::isEqual().
|
inline |
Returns true if this tree contains a subtree (node) that has an data element that matches the specified key.
Complexity is logarithmic in the size of the tree.
Definition at line 170 of file ImmutableSet.h.
|
inline |
Definition at line 325 of file ImmutableSet.h.
Referenced by llvm::ImutAVLFactory< ImutInfo >::getCanonicalTree(), and llvm::ImutAVLTree< ValInfo >::release().
|
inline |
Returns an iterator for the tree that denotes the end of an inorder traversal.
Definition at line 116 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::isEqual().
|
inline |
Finds the subtree associated with the specified key value.
This method returns NULL if no matching subtree is found.
Definition at line 76 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::contains().
|
inline |
Returns the height of the tree. A tree with no subtrees has a height of 1.
Definition at line 69 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::validateTree().
|
inline |
Return a pointer to the left subtree.
This value is NULL if there is no left subtree.
Definition at line 62 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::size(), and llvm::ImutAVLTree< ValInfo >::validateTree().
|
inline |
Find the subtree associated with the highest ranged key value.
Definition at line 91 of file ImmutableSet.h.
|
inline |
Return a pointer to the right subtree.
This value is NULL if there is no right subtree.
Definition at line 66 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::size(), and llvm::ImutAVLTree< ValInfo >::validateTree().
|
inline |
Returns the data value associated with the tree node.
Definition at line 72 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::isElementEqual(), and llvm::ImutAVLTree< ValInfo >::validateTree().
|
inline |
Definition at line 132 of file ImmutableSet.h.
|
inline |
Definition at line 118 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::isElementEqual(), and llvm::ImutAVLTree< ValInfo >::isEqual().
|
inline |
Compares two trees for structural equality and returns true if they are equal.
The worst case performance of this operation is linear in the sizes of the trees.
Definition at line 139 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::isNotEqual().
|
inline |
Compares two trees for structural inequality.
Performance is the same as isEqual.
Definition at line 165 of file ImmutableSet.h.
|
inline |
Definition at line 319 of file ImmutableSet.h.
|
inline |
Definition at line 317 of file ImmutableSet.h.
|
inline |
Returns the number of nodes in the tree, which includes both leaves and.
Definition at line 100 of file ImmutableSet.h.
|
inline |
A utility method that checks that the balancing and ordering invariants of the tree are satisfied.
It is a recursive method that returns the height of the tree, which is then consumed by the enclosing validateTree call. External callers should ignore the return value. An invalid tree will cause an assertion to fire in a debug build.
Definition at line 177 of file ImmutableSet.h.
Referenced by llvm::ImutAVLTree< ValInfo >::validateTree().
|
friend |
Definition at line 1 of file ImmutableSet.h.
|
friend |
Definition at line 1 of file ImmutableSet.h.