[#absl-FixedArray-data-0d] = xref:absl.adoc[absl]::xref:absl/FixedArray.adoc[FixedArray]::data :relfileprefix: ../../ :mrdocs: `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. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/FixedArray/const_pointer.adoc[const_pointer] xref:absl/FixedArray/data-0c7.adoc[data]() const; ---- [.small]#xref:absl/FixedArray/data-0c7.adoc[_» more..._]# Returns a T* pointer to elements of the fixed array. This pointer can be used to access and modify the contained elements. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/FixedArray/pointer.adoc[pointer] xref:absl/FixedArray/data-0c4.adoc[data](); ---- [.small]#xref:absl/FixedArray/data-0c4.adoc[_» more..._]# == Return Value * A const pointer to the first element. * A pointer to the first element. [.small]#Created with https://www.mrdocs.com[MrDocs]#