std::span<T,Extent>:: front
From cppreference.com
C++
Containers library
Sequence | ||||
(C++11)
|
||||
(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.
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
Run this code
Output:
0 1 2 3
See also
access the last element
(public member function) |
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/container/span/front&oldid=159757
"