-
#include "tensorstore/util/span.h" - constexpr tensorstore::span<T, Extent>::span();
Constructs an empty/invalid array.
If
Extent == dynamic_extentorExtent == 0, then this constructs a valid view of an empty array, withdata() == nullptrandsize() == 0.If
Extent > 0, then this constructs an invalid view of a non-empty array, withdata() == nullptrandsize() == Extent.