package core_kernel

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.14.2.tar.gz
sha256=66f5353964d35a994ec7fdc88fe60ae5d497ac89a8042786f3e37d9e2202ce4b
md5=ede2f6d22eaa8320f88bac67d41b5cff

doc/src/core_kernel.composition_infix/composition_infix.ml.html

Source file composition_infix.ml

1
2
3
4
open Base

let ( >> ) f g = Fn.compose g f
let ( << ) f g = Fn.compose f g