continuable v0.8.0 Release Notes

Release Date: 2017-03-03 // about 7 years ago
  • ๐Ÿš€ Continuable - Release v0.8.0

    ๐Ÿš€ This is the second pre-release of the continuable library.

    ๐Ÿ”„ Changelog

    • ๐Ÿ›  Fixes a major issue with handling the ownership for consumed continuables which led to unintended invocations.
    • โž• Adds partial application support which makes it possible to chain callbacks which accept less arguments then the curret signature.

      http_request("github.com") .then([] { // ... });

    • โž• Adds Support for sequential invocation:

      http_request("github.com") >> http_request("atom.io") .then([] (std::string github, std::string atom) { // ... });