Trait tc_tensor::TensorBoolean [−][src]
pub trait TensorBoolean<O> { type Combine: TensorInstance; fn and(self, other: O) -> TCResult<Self::Combine>; fn or(self, other: O) -> TCResult<Self::Combine>; fn xor(self, other: O) -> TCResult<Self::Combine>; }
Expand description
Tensor
boolean operations.
Associated Types
type Combine: TensorInstance
type Combine: TensorInstance
The result type of a boolean operation.