absl::FixedArray::FixedArray

Creates an array initialized with n copies of val.

Synopsis

Declared in <absl/container/fixed_array.h>

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

Parameters

NameDescription
nThe number of elements to store.
valThe value to copy into every element.
aThe allocator to use.