3#ifndef AWKWARD_BUILDEROPTIONS_H_
4#define AWKWARD_BUILDEROPTIONS_H_
19 template <
typename... OPTIONS>
21 static constexpr std::size_t
value =
sizeof...(OPTIONS);
31 template <std::
size_t INDEX>
54 template <std::
size_t INDEX>
57 return std::get<INDEX>(
pars);
Filters, rearranges, and/or duplicates items in its content through an index, which has the same effe...
Definition IndexedArray.h:204
Definition BitMaskedArray.h:15
Container for all configuration options needed by ArrayBuilder, GrowableBuffer, LayoutBuilder and the...
Definition BuilderOptions.h:20
int64_t initial() const noexcept
The initial number of reserved entries for a GrowableBuffer.
Definition BuilderOptions.h:41
typename std::tuple_element< INDEX, decltype(OptionsPack())>::type OptionType
Definition BuilderOptions.h:32
static constexpr std::size_t value
Definition BuilderOptions.h:21
Options(OPTIONS... options)
Creates an Options tuple from a full set of parameters.
Definition BuilderOptions.h:36
double resize() const noexcept
The factor with which a GrowableBuffer is resized when its length reaches its reserved.
Definition BuilderOptions.h:49
OptionsPack pars
Definition BuilderOptions.h:60
typename std::tuple< OPTIONS... > OptionsPack
Definition BuilderOptions.h:23
const OptionType< INDEX > & option() const noexcept
Access to all other options.
Definition BuilderOptions.h:56