conspire::math

Trait ContractFirstSecondIndicesWithSecondIndicesOf

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

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

Required Associated Types§

Required Methods§

Source

fn contract_first_second_indices_with_second_indices_of( &self, object_a: TI, object_b: TJ, ) -> Self::Output

Implementors§

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize, const M: usize, const N: usize> ContractFirstSecondIndicesWithSecondIndicesOf<&TensorRank2<D, I, M>, &TensorRank2<D, J, N>> for TensorRank4<D, M, N, K, L>

Source§

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