std::span<T,Extent>::front
来自cppreference.com
constexpr reference front() const; |
(C++20 起) | |
返回到 span 中首元素的引用。
在空 span 上调用 front
导致未定义行为。
参数
(无)
返回值
到首元素的引用。
复杂度
常数。
注解
对于 span c
,表达式 c.front() 等价于 *c.begin()。
示例
运行此代码
输出:
0 1 2 3
参阅
访问最后一个元素 (公开成员函数) |