LLVM 20.0.0git
|
SparseSetValTraits - Objects in a SparseSet are identified by keys that can be uniquely converted to a small integer less than the set's universe. More...
#include "llvm/ADT/SparseSet.h"
Static Public Member Functions | |
static unsigned | getValIndex (const ValueT &Val) |
SparseSetValTraits - Objects in a SparseSet are identified by keys that can be uniquely converted to a small integer less than the set's universe.
This class allows the set to hold values that differ from the set's key type as long as an index can still be derived from the value. SparseSet never directly compares ValueT, only their indices, so it can map keys to arbitrary values. SparseSetValTraits computes the index from the value object. To compute the index from a key, SparseSet uses a separate KeyFunctorT template argument.
A simple type declaration, SparseSet<Type>, handles these cases:
The type declaration SparseSet<Type, UnaryFunction> handles:
Only other, unexpected cases require specializing SparseSetValTraits.
For best results, ValueT should not require a destructor.
Definition at line 57 of file SparseSet.h.
|
inlinestatic |
Definition at line 58 of file SparseSet.h.
Referenced by llvm::SparseSetValFunctor< KeyT, ValueT, KeyFunctorT >::operator()().