package preface

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

Source file fun.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
let compose_left_to_right f g x = g (f x)

let compose_right_to_left f g x = f (g x)

let const x _ = x

let id x = x

let flip f x y = f y x

module Infix = struct
  let ( %> ) = compose_left_to_right

  let ( <% ) = compose_right_to_left

  let ( % ) = compose_right_to_left
end

include Infix
OCaml

Innovation. Community. Security.