recursion-schemes VS unliftio

Compare recursion-schemes vs unliftio and see what are their differences.

recursion-schemes

Generalized bananas, lenses and barbed wire (by ekmett)

unliftio

The MonadUnliftIO typeclass for unlifting monads to IO (by fpco)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
recursion-schemes unliftio
20 5
335 150
0.6% 0.0%
4.9 3.9
3 days ago 3 months ago
Haskell Haskell
BSD 2-clause "Simplified" License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

recursion-schemes

Posts with mentions or reviews of recursion-schemes. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-05.
  • -❄️- 2023 Day 4 Solutions -❄️-
    143 projects | /r/adventofcode | 5 Dec 2023
    Reasonably proud of my part 2 solution, although would like to try using a recursion scheme rather than unstructured recursion:
  • Interactive animations
    11 projects | /r/haskell | 6 May 2023
    Yeah, that project is pretty much at the bottom of my list, unfortunately. My top projects these days are mgmt, klister, recursion-schemes, and hint... And that's already too much!
  • Science of Recursion
    1 project | /r/AskScienceDiscussion | 28 Sep 2022
    In a programming context, recursion schemes can be used to write recursive (or corecursive) functions, by automating/abstracting away the common boilerplate part of actually doing the recursion. They take the form of polymorphic higher-order functions, which can be imported from a library like this classic one.
  • Is there a way to avoid call overhead?
    5 projects | /r/rust | 10 Sep 2022
    Maybe I didn't link the best post. It is unfortunately the only one I know that uses Rust. If you are able to read Haskell, the documentation for the recursion-schemes package might be a better resource?
  • Ah yes I love arrays with a length of infinity!!!
    1 project | /r/programminghorror | 28 Jul 2022
    Writing something as a type of fold over an infinite sequence is nicer than using recursion directly in my opinion. See: https://hackage.haskell.org/package/recursion-schemes
  • Tips on mastering recursion and trees and shit?
    1 project | /r/csMajors | 5 Feb 2022
    Consider recursion schemes! It let's you separate the logic of how your recursion is structured on your data, and the logic of what you're doing on each recursion stage. So e.g. you can write the core logic of a recursive linked list summation as just fun x accum -> x + accum, and then you just find the appropriate recursion scheme to pipe the list values into x and handle recursing to build accum (a catamorphism in this case)
  • So you come across an undocumented library…
    2 projects | /r/haskell | 16 Nov 2021
    It's a pretty complicated bug, documented in details at https://github.com/recursion-schemes/recursion-schemes/issues/50
  • Beautiful ideas in programming: generators and continuations
    2 projects | news.ycombinator.com | 3 Aug 2021
    It’s also trivial and easy in Haskell — you just need an instance of `Foldable` or `Traversable` on your collection, and then you can fold or traverse it in a configurable way. Or for recursive structures, use https://hackage.haskell.org/package/recursion-schemes. Or even just pass a traversal function as an argument for maximum flexibility.
  • fromMaybe is Just a fold
    1 project | /r/haskell | 2 Aug 2021
    https://hackage.haskell.org/package/recursion-schemes is the "normal" library for this type of generalized folding. It even contains Base instances for Maybe and Either.
  • Annotation via anamorphism?
    1 project | /r/haskell | 27 Jul 2021
    I've been working on a system which uses recursion-schemes to annotate a recursive type. The annotated tree itself is pretty simple; at each level, we pair the annotation with the base functor, or

unliftio

Posts with mentions or reviews of unliftio. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-14.
  • UnliftIO, ExceptT and Coercible
    1 project | /r/haskell | 18 Feb 2023
    FWIW, your suggestion is very similar to a proposed instance for MonadUnliftIO (ExceptT e), except that effectfuls use of the type system means that it doesn't suffer from one of the proposed downsides (dubious interaction with catchAny).
  • How introduce `ResourceT` into my stack
    3 projects | /r/haskell | 14 Oct 2022
    Possibly interesting thread here: https://github.com/fpco/unliftio/issues/68
  • Is `MonadBaseControl` dead?
    3 projects | /r/haskell | 21 Jun 2021
    Any way quoting u/snoyberg : https://github.com/fpco/unliftio/issues/17#issuecomment-363655106
  • Try.do is dangerous
    2 projects | /r/haskell | 23 Dec 2020
    That's not true. It's just writing that instance is a bit tricky: https://github.com/fpco/unliftio/issues/68
  • Try.do for recoverable errors in Haskell
    1 project | /r/haskell | 21 Dec 2020
    However, ExceptT cannot be an instance of MonadUnliftIO – because it necessarily requires multiple exit points. See this discussion which should give you an idea of how hairy and unpredictable this can be.

What are some alternatives?

When comparing recursion-schemes and unliftio you can also consider the following projects:

distributed-process-platform - DEPRECATED (Cloud Haskell Platform) in favor of distributed-process-extras, distributed-process-async, distributed-process-client-server, distributed-process-registry, distributed-process-supervisor, distributed-process-task and distributed-process-execution

lifted-base - IO operations from the base library lifted to any instance of MonadBase or MonadBaseControl

record - Anonymous records

mmorph - Monad morphisms

machines - Networks of composable stream transducers

Workflow - re-startable monad that recover the execution state from a log, and workflow patterns

pipes-core - Compositional pipelines

exceptional - A simple Haskell type for pure code that could go wrong.

chr-core - Constraint Handling Rules

managed - A monad for managed values

freer-simple - A friendly effect system for Haskell

effectful - An easy to use, fast extensible effects library with seamless integration with the existing Haskell ecosystem.