pub trait ReassociateKernel<P>: Tensor {
type Reassociated: Tensor<F = Self::F, Hand = Self::Hand, Action = Self::Action>;
// Required method
fn reassociate_kernel(self) -> Self::Reassociated;
}Expand description
Required Associated Types§
Required Methods§
Sourcefn reassociate_kernel(self) -> Self::Reassociated
fn reassociate_kernel(self) -> Self::Reassociated
Performs the selected coordinate-preserving associativity isomorphism.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".