ptcow 0.6.0

Library for editing and playback of PxTone (.ptcop) music
Documentation
1
2
3
4
5
6
7
pub trait ArrayLenExt {
    const LEN: usize;
}

impl<T, const N: usize> ArrayLenExt for [T; N] {
    const LEN: usize = N;
}