pub trait Outer<T, Dx: Dim, Dy: Dim> {
// Required method
fn outer<'a, Lx, Ly>(
&self,
x: &'a Slice<T, (Dx,), Lx>,
y: &'a Slice<T, (Dy,), Ly>,
) -> impl OuterBuilder<'a, T, Lx, Ly, Dx, Dy>
where Lx: Layout,
Ly: Layout;
}Expand description
Outer product and rank-1 update
Required Methods§
fn outer<'a, Lx, Ly>( &self, x: &'a Slice<T, (Dx,), Lx>, y: &'a Slice<T, (Dy,), Ly>, ) -> impl OuterBuilder<'a, T, Lx, Ly, Dx, Dy>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".