package farith

  1. Overview
  2. Docs

Source file Bool.ml

1
2
3
4
5
6
# 1 "extracted/Bool.ml"

(** val eqb : bool -> bool -> bool **)

let eqb b1 b2 =
  if b1 then b2 else if b2 then false else true
OCaml

Innovation. Community. Security.