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;

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

Return Value

  • A const pointer to the first element.

  • A pointer to the first element.

Created with MrDocs