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

The result type of a boolean operation.

Required methods

Logical and

Logical or

Logical xor

Implementors