-
#include "tensorstore/tensorstore.h"
-
Result<SharedArray<const Element>>
tensorstore::TensorStore<ElementType, Rank, Mode>::fill_value() const; Returns the fill value.
If the there is no fill value, or it is unknown, returns a null array (i.e. with
Array::data() == nullptr
) and unspecified bounds and data type.Otherwise, the returned array has a non-null data pointer, a shape broadcastable to
this->domain()
and a data type equal tothis->dtype()
.