package core_kernel

  1. Overview
  2. Docs
Industrial strength alternative to OCaml's standard library

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=fd2b8c6715794df7a810a62b226f53720f211cd344b4afc9fab0498796d6b466

doc/core_kernel.composition_infix/Composition_infix/index.html

Module Composition_infixSource

Infix composition operators.

  • a |> (f >> g) = a |> f |> g
  • (f << g) a = f (g a)
Sourceval (>>) : ('a -> 'b) -> ('b -> 'c) -> 'a -> 'c
Sourceval (<<) : ('b -> 'c) -> ('a -> 'b) -> 'a -> 'c
OCaml

Innovation. Community. Security.