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
(* 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 i32
type i64
type f32
include
Fop_intf.T
with type t := t
and type boolean := boolean
and type i32 := i32
and type i64 := i64
and type same_size_int := i64
val promote_f32 : f32 -> t
val reinterpret_i64 : i64 -> t
val of_concrete : Float64.t -> t
val pp : Format.formatter -> t -> unit
end