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;
}