std::span<T,Extent>::front
constexpr reference front() const; | (since C++20) |
Возвращает ссылку на первый элемент в диапазоне.
Вызов front на пустом диапазоне приводит к неопределенному поведению.
Параметры
(нет)
Значение возврата
Ссылка на первый элемент.
Сложность
Постоянная.
Примечания
Для диапазона c, выражение c.front() эквивалентно *c.begin().
Пример
#include <iostream>
#include <span>
void print(std::span<const int> const data)
{
for (auto offset{0U}; offset != data.size(); ++offset)
std::cout << data.subspan(offset).front() << ' ';
std::cout << '\n';
}
int main()
{
constexpr int data[]{0, 1, 2, 3, 4, 5, 6};
print({data, 4});
}Вывод:
0 1 2 3
См. также
| доступ к последнему элементу (публичный член-функция) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/container/span/front