[#absl-MakeConstSpan-07] = xref:absl.adoc[absl]::MakeConstSpan :relfileprefix: ../ :mrdocs: Constructs a `Span<const T>` from a `[begin, end)]` pointer pair. == Synopsis Declared in `<absl/types/span.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< int& ExplicitArgumentBarrier..., typename T> xref:absl/Span.adoc[Span<T const>] MakeConstSpan( T* begin, T* end) noexcept; ---- == Return Value A read‐only span over the range `[begin, end)]`. == Parameters [cols="1,4"] |=== | Name| Description | *begin* | Pointer to the first element. | *end* | Pointer just past the last element. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#