use std::ops::Mul;
use crate::{matrix_init, Matrix, Vector};
pub trait Outer<Rhs: Vector>: Vector
where Self::Output: Matrix
{
type Output;
fn outer(self, rhs: Rhs) -> Self::Output;
}
impl<F, const L: usize, const H: usize> Outer<[F; L]> for [F; H]
where
Self: Vector,
[F; L]: Vector,
[[<F as Mul<F>>::Output; L]; H]: Matrix,
F: Mul<F> + Clone
{
type Output = [[<F as Mul<F>>::Output; L]; H];
fn outer(self, rhs: [F; L]) -> Self::Output
{
matrix_init(|r, c| self[r].clone()*rhs[c].clone())
}
}