1Sys.Immediate64(3) OCaml library Sys.Immediate64(3)
2
3
4
6 Sys.Immediate64 - no description
7
9 Module Sys.Immediate64
10
12 Module Immediate64
13 : sig end
14
15
16
17
18
19
20
21
22
23 This module allows to define a type t with the immediate64 attribute.
24 This attribute means that the type is immediate on 64 bit architec‐
25 tures. On other architectures, it might or might not be immediate.
26
27 module type Non_immediate = sig end
28
29
30
31
32 module type Immediate = sig end
33
34
35
36
37 module Make : functor (Immediate : Immediate) (Non_immediate : Non_im‐
38 mediate) -> sig end
39
40
41
42
43
44
45
46OCamldoc 2023-07-20 Sys.Immediate64(3)