-
#include "tensorstore/box.h"
-
template <typename BoxType>
requires IsBoxLike<std::remove_cvref_t<BoxType>> &&
(!Mutable ||
IsMutableBoxLike<std::remove_reference_t<BoxType>>) &&
(RankConstraint::Implies(
std::remove_cvref_t<BoxType>::static_rank,
Rank))
BoxView& tensorstore::BoxView<Rank, Mutable>::operator=(BoxType &&
other); Rebinds this box view to refer to the origin and shape vectors of another box.
- Requires:¶
If
Mutable == true
,BoxType
must be a mutable Box-like type (such as a non-constBox
reference or aMutableBoxView
).