pub trait CrossProduct<T> {
type Output;
// Required method
fn cross(self, other: T) -> Self::Output;
}Expand description
The cross product of two rank-1 tensors.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".