std::span<T,Extent>::front
|
constexpr reference front() const;
|
||
Returns a reference to the first element in the span.
Calling front on an empty span results in undefined behavior.
Parameters
(none)
Return value
A reference to the first element.
Complexity
Constant
Notes
For a span c, the expression c.front() is equivalent to *c.begin().
Example
Output:
0 1 2 3
See also
|
(C++20)
|
access the last element (public member function) |