package opam-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val (@@) : ('a -> 'b) -> 'a -> 'b

Function application (with lower priority) (predefined in OCaml 4.01+)

val (|>) : 'a -> ('a -> 'b) -> 'b

Pipe operator -- reverse application (predefined in OCaml 4.01+)

val (@*) : ('b -> 'c) -> ('a -> 'b) -> 'a -> 'c

Function composition : (f @* g) x =~ f (g x)

val (@>) : ('a -> 'b) -> ('b -> 'c) -> 'a -> 'c

Reverse function composition : (f @> g) x =~ g (f x)