1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(* SPDX-License-Identifier: AGPL-3.0-or-later *)
(* Copyright © 2021-2024 OCamlPro *)
(* Written by the Owi programmers *)
module type T = sig
type t
type boolean
type f32
type f64
type i64
include
Iop_intf.T
with type t := t
and type boolean := boolean
and type concrete := Int32.t
and type f32 := f32
and type f64 := f64
val to_bool : t -> boolean
val reinterpret_f32 : f32 -> t
val wrap_i64 : i64 -> t
val of_concrete : Int32.t -> t
val of_int : int -> t
val pp : Format.formatter -> t -> unit
end