package core_kernel

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

Install

Dune Dependency

Authors

Maintainers

Sources

core_kernel-v0.13.0.tar.gz
sha256=9c4926888a5facda4f90fd0bbcd903caa3b94c04e1b9de624deb555ec85893ef
md5=0fd05be8bf5eabde5080e3c40b20092b

doc/core_kernel.composition_infix/Composition_infix/index.html

Module Composition_infix

Infix composition operators.

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

Innovation. Community. Security.