package volgo

  1. Overview
  2. Docs
A Versatile OCaml Library for Git Operations

Install

dune-project
 Dependency

Authors

Maintainers

Sources

volgo-0.0.22.tbz
sha256=2714935a34417be2151736a4765431746c9348db5a3b4f0eaacaf74dfaefeabb
sha512=0eba27395125ae928fd53561029d9653094d822b2907cb9afc18f412b46ef47cf880ba80d1bf17212add4e68e6a55e2792176303e2b0bcee08940e25731b4738

doc/volgo.stdlib/Volgo_stdlib/Option/Syntax/index.html

Module Option.SyntaxSource

Binding operators. See manual section 12.23 for details.

  • since 5.5
Sourceval (let*) : 'a option -> ('a -> 'b option) -> 'b option

( let* ) is Option.bind.

Sourceval (and*) : 'a option -> 'b option -> ('a * 'b) option

( and* ) is Option.product.

Sourceval (let+) : 'a option -> ('a -> 'b) -> 'b option

( let+ ) is Option.map.

Sourceval (and+) : 'a option -> 'b option -> ('a * 'b) option

( and+ ) is Option.product.