Skip to main content

ContractSecondFourthWithFirst

Trait ContractSecondFourthWithFirst 

Source
pub trait ContractSecondFourthWithFirst<TJ, TL> {
    type Output;

    // Required method
    fn contract_second_fourth_with_first(
        &self,
        object_a: TJ,
        object_b: TL,
    ) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn contract_second_fourth_with_first( &self, object_a: TJ, object_b: TL, ) -> Self::Output

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<const D: usize, I, J, K, L, U, V, W> ContractSecondFourthWithFirst<&TensorRank1<D, J, V>, &TensorRank1<D, L, W>> for TensorRank4<D, I, J, K, L, U>
where U: UnitMul<V>, <U as UnitMul<V>>::Output: UnitMul<W>,

Source§

type Output = TensorRank2<D, I, K, <<U as UnitMul<V>>::Output as UnitMul<W>>::Output>