package seqes

  1. Overview
  2. Docs

Functors to generate specialised monadic variants of the Stdlib.Seq.t type along with all the traversor and transformer functions.

module type S1 = sig ... end

The module type for the output of the Make module (below).

module Make1 (Mon : sig ... end) : sig ... end

Make a specialised Seq-like module based on a given Monad.

module type S2 = sig ... end

The module type for the output of the Make2 module (below).

module Make2 (Mon : sig ... end) : sig ... end