package core_kernel

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

Source file composition_infix.ml

1
2
let ( >> ) f g x = g (f x)
let ( << ) f g x = f (g x)