data overloads
Declared in <absl/container/inlined_vector.h>
Returns a pointer to the elements of the inlined vector. This pointer can be used to access and modify the contained elements.
pointer
data() noexcept;
» more...
Overload of InlinedVector::data() that returns a const_pointer to the elements of the inlined vector. This pointer can be used to access but not modify the contained elements.
const_pointer
data() const noexcept;
» more...
pointer to the elements.const_pointer to the elements.