[#absl-InlinedVector-data-03] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::data :relfileprefix: ../../ :mrdocs: `data` overloads == Synopses 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. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/InlinedVector/pointer.adoc[pointer] xref:absl/InlinedVector/data-0a.adoc[data]() noexcept; ---- [.small]#xref:absl/InlinedVector/data-0a.adoc[_» 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. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/InlinedVector/const_pointer.adoc[const_pointer] xref:absl/InlinedVector/data-0f.adoc[data]() const noexcept; ---- [.small]#xref:absl/InlinedVector/data-0f.adoc[_» more..._]# == Return Value * A `pointer` to the elements. * A `const_pointer` to the elements. [.small]#Created with https://www.mrdocs.com[MrDocs]#