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
type ('a, 's) io
type 's scheduler = {
bind : 'a 'b. ('a, 's) io -> ('a -> ('b, 's) io) -> ('b, 's) io;
return : 'a. 'a -> ('a, 's) io;
}
type ('f, 's, 'e) seek = {
lseek : 'f -> int -> [ `SET | `CUR | `END ] -> ((int, 'e) result, 's) io;
}
module type X = sig
type 'a s
type t
external inj : 'a s -> ('a, t) io = "%identity"
external prj : ('a, t) io -> 'a s = "%identity"
end
module Common = struct
type t
external inj : 'a -> 'b = "%identity"
external prj : 'a -> 'b = "%identity"
end
module type FUNCTOR = sig
type 'a t
end
module Make (T : FUNCTOR) = struct
type 'a s = 'a T.t
include Common
end
module type IFLOW = sig
type scheduler
type buffer
type error
type flow
val input :
flow -> buffer -> off:int -> len:int -> ((int, error) result, scheduler) io
end
module type OFLOW = sig
type scheduler
type buffer
type error
type flow
val output :
flow -> buffer -> off:int -> len:int -> ((int, error) result, scheduler) io
end
type ('f, 'b, 's, 'e) iflow =
(module IFLOW
with type flow = 'f
and type buffer = 'b
and type scheduler = 's
and type error = 'e)
type ('f, 'b, 's, 'e) oflow =
(module OFLOW
with type flow = 'f
and type buffer = 'b
and type scheduler = 's
and type error = 'e)