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