Skip to content

Getting Started

Haskellian gives you a number of pure functions and utilities grouped in modules. We recommend these standard aliases:

from haskellian import iter as I, either as E, asyn_iter as AI, promise as P
  • iter as I: utilities around the Iter monad (a lazy iterable sequence)
  • either as E: around the Either mondad
  • asyn_iter as AI: around the AsynIter monad (a lazy, asynchronously iterable sequence)
  • promise as P: around the Promise monad (a lazy, asynchronously iterable sequence)

Let's start with iter