pub type BoolDType = BoolStore;
Boolean dtype.
This is currently an alias to BoolStore, since it only varies by the storage representation.
BoolStore
pub enum BoolDType { Native, U8, U32, }
Stored as native boolean type (e.g. bool).
bool
Stored as 8-bit unsigned integer.
Stored as 32-bit unsigned integer.