devela/num/geom/linear/vector/vec/
methods.rs
1#![allow(clippy::needless_range_loop)]
7
8use super::super::VecVector;
9use crate::data::Vec;
10
11impl<T> VecVector<T> {
14 pub const fn new(coords: Vec<T>) -> Self {
16 Self { coords }
17 }
18}
19
20macro_rules! impl_vector {
24 (int $($t:ty),+) => { $( impl_vector![@int $t]; )+ };
25 (@int $t:ty) => {
26 impl VecVector<$t> {
27 }
28 };
29 (float $($t:ty),+) => { $( impl_vector![@float $t]; )+ };
30 (@float $t:ty) => {
31 impl VecVector<$t> {
32 }
33 };
34}
35impl_vector![int u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128, isize];
36impl_vector![float f32, f64];