Skip to main content

Module ndarray

Module ndarray 

Source
Expand description

The core/ndarray schema.

An array’s data lives in one of three places, distinguished by the schema’s source and data keys:

  • an internal block, source: 0 naming a block by index (negative indices count back from the last block);
  • an external file, source: "other.asdf", used for exploded form;
  • inline in the tree, under data, as nested sequences.

Structs§

Ndarray
A parsed core/ndarray.

Enums§

Mask
How missing values are marked.
Source
Where an array’s data comes from.

Functions§

element_count
The number of elements a shape describes, refusing to wrap.
infer_inline_datatype
The narrowest scalar type that holds every value of an inline array.