package ppx_repr

  1. Overview
  2. Docs
PPX deriver for type representations

Install

Dune Dependency

Authors

Maintainers

Sources

repr-fuzz-0.4.0.tbz
sha256=1791765a495981cc69c0d591ef06831ca158d85192c6631b4838b3ee997dfcce
sha512=09fac16a9d4df87bf68b275b032407ddd281beadd2881f848fc2e58d5205538b2a9c3ad6743de268ce70838defcc72de49c1f7e3b02ac590f2ff187fcf0abfab

doc/ppx_repr.lib/Ppx_repr_lib/Monad/Reader/index.html

Module Monad.ReaderSource

Computations that read values from a shared environment.

Sourcetype ('a, 'p) t
Sourceval return : 'a -> ('a, 'p) t
Sourceval map : ('a -> 'b) -> ('a, 'p) t -> ('b, 'p) t
Sourceval bind : ('a -> ('b, 'p) t) -> ('a, 'p) t -> ('b, 'p) t
Sourceval sequence : ('a, 'p) t list -> ('a list, 'p) t
Sourcemodule Syntax : sig ... end
Sourceval run : ('a, 'e) t -> 'e -> 'a

Runs a ('a,'e)t and extracts the final value 'a from it.

Sourceval ask : ('e, 'e) t

Retrieves the monad environment.

Sourceval asks : ('e -> 'a) -> ('a, 'e) t

Retrieves a projection of the current monad environment.

Sourceval local : ('e -> 'e) -> ('a, 'e) t -> ('a, 'e) t

local f m executes a computation in m in an environment modified by f.

OCaml

Innovation. Community. Security.