Skip to content

Releases: usbalbin/iter_fixed

v0.4.0

23 Jun 21:39
d664bbf
Compare
Choose a tag to compare

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

v0.3.0

09 Sep 14:41
da2c778
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release

This removes all unsafe code except the unsafe-blocks around our unsafe traits.

Breaking

This removes the feature nightly_features from default features