libutils 9.40.22

Common library types for faster development
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//^
//^ HEAD
//^

//> HEAD -> SUPER
use super::Log;


//^
//^ CONVERSIONS
//^

//> CONVERSIONS -> FROM ARRAY
impl<Type, const N: usize> From<[Type; N]> for Log<Type> {
    fn from(value: [Type; N]) -> Self {return Self::from_iter(value)}
}