absl::FixedArray::FixedArray

Creates an array object that can store n elements.

Synopsis

Declared in <absl/container/fixed_array.h>

explicit
FixedArray(
    size_type n,
    allocator_type const& a = allocator_type());

Description

Note that trivially constructible elements will be uninitialized.

Parameters

NameDescription
nThe number of elements to store.
aThe allocator to use.