Skip to main content

libutils_log/
conversions.rs

1//^
2//^ HEAD
3//^
4
5//> HEAD -> SUPER
6use super::Log;
7
8
9//^
10//^ CONVERSIONS
11//^
12
13//> CONVERSIONS -> FROM ARRAY
14impl<Type, const N: usize> From<[Type; N]> for Log<Type> {
15    fn from(value: [Type; N]) -> Self {return Self::from_iter(value)}
16}