devela/num/geom/linear/vector/vec/
methods.rs

1// devela::num::geom::linear::vector::vec::methods
2//
3//! impl methods for VecVector
4//
5
6#![allow(clippy::needless_range_loop)]
7
8use super::super::VecVector;
9use crate::data::Vec;
10
11/* common methods */
12
13impl<T> VecVector<T> {
14    /// Returns a new `VecVector` from the given `coords` vector.
15    pub const fn new(coords: Vec<T>) -> Self {
16        Self { coords }
17    }
18}
19
20/* compile-time ops for primitives */
21
22// helper for methods
23macro_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];