Skip to content

v0.4.0

Latest
Compare
Choose a tag to compare
@usbalbin usbalbin released this 23 Jun 21:39
· 2 commits to master since this release
d664bbf

Breaking

  • #21 Update FromIteratorFixed trait to avoid unnameable iterator type as type paramater in the trait
    - pub trait FromIteratorFixed<I: Iterator, const N: usize> {
    -     fn from_iter_fixed(iter_fixed: IteratorFixed<I, N>) -> Self;
    + pub trait FromIteratorFixed<T, const N: usize> {
    +     fn from_iter_fixed<I: Iterator<Item = T>>(iter_fixed: IteratorFixed<I, N>) -> Self;
      }

Other changes

Thank you