indexed_span constructors¶
Defaulted members¶
-
indexed_span::indexed_span(indexed_span const&) noexcept = default¶
-
indexed_span::operator=(indexed_span const&) noexcept = default¶
-
indexed_span::~indexed_span() noexcept = default¶
Note
There are no move constructor nor move assignment operator defined, following the design
choice of std::span
. As indexed_span is a non-owning view on the data, there is no
need to move it.
Deleted members¶
-
indexed_span::indexed_span() = delete¶
Note
This constructor could be defined if Indexer::size() == 0
, but currently is not.
Other constructors¶
-
indexed_span::indexed_span(Value *begin)¶
Constructs a new
indexed_span
over the range[begin, begin + Indexer::size]
, which must be a valid contiguous memory segment containing objects of typeValue
. Behaviour is undefined otherwise.Since the extent of the span depends on the indexer, the constructor from a raw data pointer does not takes a size parameter.