HomeSort by: relevance | last modified time | path
    Searched defs:ImmutableSet (Results 1 - 1 of 1) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ImmutableSet.h 1 //===--- ImmutableSet.h - Immutable (functional) set interface --*- C++ -*-===//
9 // This file defines the ImutAVLTree and ImmutableSet classes.
912 // definitions used by ImutAVLTree, ImmutableSet, and ImmutableMap. These
970 class ImmutableSet {
984 explicit ImmutableSet(TreeTy *R) : Root(R) {}
1001 ImmutableSet getEmptySet() {
1002 return ImmutableSet(F.getEmptyTree());
1012 LLVM_NODISCARD ImmutableSet add(ImmutableSet Old, value_type_ref V) {
1014 return ImmutableSet(Canonicalize ? F.getCanonicalTree(NewT) : NewT)
    [all...]

Completed in 28 milliseconds