package opam-core

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module OpamStd.OpSource

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

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

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

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