constexpr reference front() const; |
Returns a reference to the first element in the span.
Calling front
on an empty span results in undefined behavior.
(none).
A reference to the first element.
Constant.
For a span c
, the expression c.front()
is equivalent to *c.begin()
.
access the last element (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/container/span/front