Construct a contextual folding set with fixed Context and 2ˆLog2InitSize buckets.

Synopsis

Declared in <llvm/ADT/FoldingSet.h>

template<
    typename C,
    typename = void>
requires std::is_constructible_v<
                            typename Trait::ContextStorage, C>
explicit
FoldingSetImpl(
    C&& Context,
    unsigned int Log2InitSize = 6);

Parameters

Name

Description

Context

Fixed context forwarded to Profile and related hooks.

Log2InitSize

Log2 of the initial bucket count (default 6).

Created with MrDocs