Trait tc_tensor::TensorBooleanConst [−][src]
pub trait TensorBooleanConst {
type Combine: TensorInstance;
fn and_const(self, other: Number) -> TCResult<Self::Combine>;
fn or_const(self, other: Number) -> TCResult<Self::Combine>;
fn xor_const(self, other: Number) -> TCResult<Self::Combine>;
}
Expand description
Tensor
boolean operations in relation to a constant.
Associated Types
type Combine: TensorInstance
type Combine: TensorInstance
The result type of a boolean operation.