LLVM 20.0.0git
|
This file defines the SmallSet class. More...
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/iterator.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/type_traits.h"
#include <cstddef>
#include <functional>
#include <set>
#include <type_traits>
#include <utility>
Go to the source code of this file.
Classes | |
class | llvm::SmallSetIterator< T, N, C > |
SmallSetIterator - This class implements a const_iterator for SmallSet by delegating to the underlying SmallVector or Set iterators. More... | |
class | llvm::SmallSet< T, N, C > |
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less than N). More... | |
class | llvm::SmallSet< PointeeType *, N > |
If this set is of pointer values, transparently switch over to using SmallPtrSet for performance. More... | |
Namespaces | |
namespace | llvm |
This is an optimization pass for GlobalISel generic memory operations. | |
Functions | |
template<typename T , unsigned LN, unsigned RN, typename C > | |
bool | llvm::operator== (const SmallSet< T, LN, C > &LHS, const SmallSet< T, RN, C > &RHS) |
Equality comparison for SmallSet. | |
template<typename T , unsigned LN, unsigned RN, typename C > | |
bool | llvm::operator!= (const SmallSet< T, LN, C > &LHS, const SmallSet< T, RN, C > &RHS) |
Inequality comparison for SmallSet. | |
This file defines the SmallSet class.
Definition in file SmallSet.h.