Skip to content

Releases: brunocodutra/alloy

v1.1.0

03 Mar 21:28
Compare
Choose a tag to compare

🚀 What's New

  • New algorithms
    • alloy::reverse
    • alloy::transform
    • alloy::take
    • alloy::foldl
    • alloy::foldr

💥 Breaking Changes

  • alloy::defer was removed
  • alloy::filter is now called alloy::stream
  • alloy::copy_if is now called alloy::filter

v1.0.0

17 Apr 20:55
Compare
Choose a tag to compare

🚀 Whats New

  • Now available under the terms of the MIT license

v0.3.0

28 Feb 20:34
Compare
Choose a tag to compare

🚀 What's New

  • New algorithm
    • alloy::drop

v0.2.0

15 Aug 20:01
Compare
Choose a tag to compare

🚀 What's New

  • Left-to-Right stream notation
    • source >> f >> g >> sink
  • Added support for compile-time predicates
    • greatly reduces compilation times and memory consumption

v0.1.0

17 Jun 10:34
Compare
Choose a tag to compare

🚀 What's New

  • Infix notation
    • sink << g << f << source instead of source(f(g(sink)))
  • New data sources
    • alloy::forward
    • alloy::capture
    • alloy::unpack
    • alloy::join
  • New algorithms
    • alloy::at
    • alloy::append
    • alloy::prepend