Skip to main content

ContractFirstSecondWithSecond

Trait ContractFirstSecondWithSecond 

Source
pub trait ContractFirstSecondWithSecond<TI, TJ> {
    type Output;

    // Required method
    fn contract_first_second_with_second(
        self,
        object_a: TI,
        object_b: TJ,
    ) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn contract_first_second_with_second( self, object_a: TI, object_b: TJ, ) -> 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, M, N, U> ContractFirstSecondWithSecond<&TensorRank2<D, I, M>, &TensorRank2<D, J, N>> for TensorRank4<D, M, N, K, L, U>

Source§

type Output = TensorRank4<D, I, J, K, L, U>