std::span<T,Extent>::operator=

来自cppreference.com
< cpp‎ | container‎ | span
constexpr span& operator=( const span& other ) noexcept = default;

赋值 other*this 。此默认化的赋值运算符进行数据指针和大小的浅复制,即调用此函数后, data() == other.data()size() == other.size()

参数

other - 要复制的另一 span

返回值

*this

参阅

构造 span
(公开成员函数)
返回指向元素序列起始的指针
(公开成员函数)
返回序列中的元素数
(公开成员函数)