Skip to content

variadics v0.0.5

Compare
Choose a tag to compare
@hydro-project-bot hydro-project-bot released this 23 Jul 03:50
· 132 commits to main since this release

New Features

  • add traits for dealing with variadics of references
    Renames some traits, but not a breaking change since there hasn't been a
    release that includes those traits.

  • add iter_any_ref and iter_any_mut to VariadicsExt
    Depends on #1241

    This isn't needed for the current GHT implementation, but is useful in
    general

  • add traits for referencing variadics
    This adds a way to convert a reference to a variadic into a variadic of
    references. I.e. &var_expr!(a, b, c) -> var_expr!(&a, &b, &c)

Bug Fixes

  • EitherRefVariadic is Variadic
  • fix HomogenousVariadic get and get_mut only returning None

Commit Statistics

  • 5 commits contributed to the release over the course of 53 calendar days.
  • 143 days passed between releases.
  • 5 commits were understood as conventional.
  • 5 unique issues were worked on: #1241, #1245, #1324, #1325, #1352

Commit Details

view details
  • #1241
    • Add traits for referencing variadics (1a6228f)
  • #1245
    • Add iter_any_ref and iter_any_mut to VariadicsExt (b92dfc7)
  • #1324
    • Add traits for dealing with variadics of references (20080cb)
  • #1325
    • Fix HomogenousVariadic get and get_mut only returning None (c70114d)
  • #1352
    • EitherRefVariadic is Variadic (bbef070)