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

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ImmutableMap.h 1 //===--- ImmutableMap.h - Immutable (functional) map interface --*- C++ -*-===//
9 // This file defines the ImmutableMap class.
23 /// ImutKeyValueInfo -Traits class used by ImmutableMap. While both the first
62 class ImmutableMap {
80 explicit ImmutableMap(const TreeTy *R) : Root(const_cast<TreeTy *>(R)) {}
95 ImmutableMap getEmptyMap() { return ImmutableMap(F.getEmptyTree()); }
97 LLVM_NODISCARD ImmutableMap add(ImmutableMap Old, key_type_ref K,
100 return ImmutableMap(Canonicalize ? F.getCanonicalTree(T): T)
    [all...]

Completed in 23 milliseconds