package colibrics

  1. Overview
  2. Docs

Source file utils__extstd__Int63.ml

1
2
3
4
let min (x: int) (y: int) : int = if x <= y then x else y

let max (x: int) (y: int) : int = if x <= y then y else x