blob: 2769a8cc9b15f130da12cb7ab996e402d9eb03e5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
impl<T, const SIZE: usize> IntoNormalized for Vector<T, { SIZE }>
where
Vector<T, { SIZE }>: Div<Vector<T, { SIZE }>>,
for<'a> &'a Vector<T, { SIZE }>: IntoLength<Output = T>,
{
type Output = Vector<T, { SIZE }>;
fn into_normalized(self) -> Self::Output {
}
}
|