blob: 6146732d4d61d78b0850dbb7ee2ec85d4d486cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
(***********************************************************************)
(* *)
(* OCaml *)
(* *)
(* Valerie Menissier-Morain, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the GNU Library General Public License, with *)
(* the special exception on linking described in file ../../LICENSE. *)
(* *)
(***********************************************************************)
(* Some extra operations on integers *)
val gcd_int: int -> int -> int
val num_bits_int: int -> int
val compare_int: int -> int -> int
val sign_int: int -> int
val length_of_int: int
val biggest_int: int
val least_int: int
val monster_int: int
|