Namespaces
Variants
Views
Actions

std::span::operator=

From cppreference.com
< cpp‎ | container‎ | span
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().

[edit] Parameters

other - another span to copy from

[edit] Return value

*this.

[edit] See also

constructs a span
(public member function) [edit]
returns a pointer to the beginning of the sequence of elements
(public member function) [edit]
returns the number of elements in the sequence
(public member function) [edit]