forked from thierry-martinez/stdcompat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
stdcompat__init.mli.in
80 lines (71 loc) · 1.71 KB
/
stdcompat__init.mli.in
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@BEGIN_FROM_4_08_0@
type 'a lazy_t = 'a CamlinternalLazy.t
@END_FROM_4_08_0@
@BEGIN_BEFORE_4_08_0@
type 'a lazy_t_ = 'a lazy_t
type 'a lazy_t = 'a lazy_t_
@END_BEFORE_4_08_0@
type in_channel_ = in_channel
type in_channel = in_channel_
type out_channel_ = out_channel
type out_channel = out_channel_
@BEGIN_FROM_4_06_0@
type nonrec floatarray = floatarray
type ('a, 'b, 'c, 'd, 'e, 'f) format6 =
('a, 'b, 'c, 'd, 'e, 'f) CamlinternalFormatBasics.format6
@END_FROM_4_06_0@
@BEGIN_BEFORE_4_06_0@
type floatarray = float array
@BEGIN_FROM_3_10_0@
type ('a, 'b, 'c, 'd, 'e, 'f) format6_ =
('a, 'b, 'c, 'd, 'e, 'f) format6
type ('a, 'b, 'c, 'd, 'e, 'f) format6 =
('a, 'b, 'c, 'd, 'e, 'f) format6_
@END_FROM_3_10_0@
@BEGIN_BEFORE_3_10_0@
type ('a, 'b, 'c, 'd, 'e, 'f) format6 =
('a, 'b, 'c, 'f) format4
@END_BEFORE_3_10_0@
@END_BEFORE_4_06_0@
@BEGIN_FROM_4_02_0@
type nonrec bytes = bytes
@END_FROM_4_02_0@
@BEGIN_BEFORE_4_02_0@
type bytes = string
@END_BEFORE_4_02_0@
type ('a, 'b) result =
@BEGIN_FROM_4_03_0@
('a, 'b) Pervasives.result =
@END_FROM_4_03_0@
@BEGIN_BEFORE_4_03_0@
@BEGIN_WITH_RESULT_PKG@
('a, 'b) Result.result =
@END_WITH_RESULT_PKG@
@END_BEFORE_4_03_0@
| Ok of 'a
| Error of 'b
@BEGIN_FROM_4_07_0@
type 'a seq = unit -> 'a seq_node
and 'a seq_node = 'a Seq.node =
| Nil
| Cons of 'a * 'a seq
@END_FROM_4_07_0@
@BEGIN_BEFORE_4_07_0@
type 'a seq = unit -> 'a seq_node
and 'a seq_node =
@BEGIN_WITH_SEQ_PKG@
'a Seq.node =
@END_WITH_SEQ_PKG@
| Nil
| Cons of 'a * 'a seq
@END_BEFORE_4_07_0@
@BEGIN_FROM_4_12_0@
type ('a, 'b) either = ('a, 'b) Either.t =
| Left of 'a
| Right of 'b
@END_FROM_4_12_0@
@BEGIN_BEFORE_4_12_0@
type ('a, 'b) either =
| Left of 'a
| Right of 'b
@END_BEFORE_4_12_0@