std::span<T,Extent>::front
From cppreference.com
C++
Containers library
(C++17) | ||||
| Sequence | ||||
(C++11) | ||||
(C++26) | ||||
(C++26) | ||||
(C++11) | ||||
| Associative | ||||
| Unordered associative | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
| Adaptors | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
| Views | ||||
(C++20) | ||||
(C++23) | ||||
| Tables | ||||
| Iterator invalidation | ||||
| Member function table | ||||
| Non-member function table |
std::span
| Member functions | ||||
| Element access | ||||
span::front | ||||
(C++26) | ||||
| Iterators | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
| Observers | ||||
| Subviews | ||||
| Non-member functions | ||||
| Non-member constant | ||||
| Deduction guides |
| constexpr reference front() const; |
(since C++20) | |
Returns a reference to the first element in the span.
|
If |
(until C++26) |
|
If
|
(since C++26) |
Contents |
[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) [edit] |