constexpr span& operator=( const span& other ) noexcept = default; |
Assigns other
to *this
. This defaulted assignment operator performs a shallow copy of the data pointer and the size, i.e., after a call to this function, data() == other.data()
and size() == other.size()
.
other | - | another span to copy from |
*this
.
constructs a span (public member function) |
|
returns a pointer to the beginning of the sequence of elements (public member function) |
|
returns the number of elements in the sequence (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/container/span/operator=