2022-10-06 02:44:38 -05:00
|
|
|
#![allow(clippy::uninlined_format_args)]
|
|
|
|
|
2019-11-06 11:15:04 -06:00
|
|
|
pub struct ArrayWrapper<const N: usize>([usize; N]);
|
|
|
|
|
|
|
|
impl<const N: usize> ArrayWrapper<{ N }> {
|
|
|
|
pub fn ice(&self) {
|
|
|
|
for i in self.0.iter() {
|
|
|
|
println!("{}", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|