absl::FixedArray::data

data overloads

Synopses

Declared in <absl/container/fixed_array.h>

Returns a const T* pointer to elements of the FixedArray. This pointer can be used to access (but not modify) the contained elements.

const_pointer
data() const;
» more...

Returns a T* pointer to elements of the fixed array. This pointer can be used to access and modify the contained elements.

pointer
data();
» more...

Return Value

  • A const pointer to the first element.
  • A pointer to the first element.