absl::FixedArray::FixedArray

Creates an array initialized with the size and contents of init_list.

Synopsis

Declared in <absl/container/fixed_array.h>

FixedArray(
    std::initializer_list<value_type> init_list,
    allocator_type const& a = allocator_type());

Parameters

NameDescription
init_listThe initializer list of elements to copy.
aThe allocator to use.