package producer

  1. Overview
  2. Docs

Module Producer.SyncSource

Sourcetype 'a t = 'a
Sourceval return : 'a -> 'a t

return a lifts the value a into the monadic context.

Sourceval bind : 'a t -> ('a -> 'b t) -> 'b t

bind ma fn applies the monadic function fn to the monadic value ma.