pub type BooleanTensor<'a> = Tensor<'a, BooleanType>;
Expand description
Tensor of type BooleanType
Aliased Type§
struct BooleanTensor<'a> {
data_type: DataType,
buffer: Buffer,
shape: Option<Vec<usize>>,
strides: Option<Vec<usize>>,
names: Option<Vec<&'a str>>,
_marker: PhantomData<BooleanType>,
}
Fields§
§data_type: DataType
§buffer: Buffer
§shape: Option<Vec<usize>>
§strides: Option<Vec<usize>>
§names: Option<Vec<&'a str>>
§_marker: PhantomData<BooleanType>