package stdcompat

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file stdcompat__init.ml

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
81
82
83
84
85

type 'a lazy_t = 'a CamlinternalLazy.t

(*
type 'a lazy_t_ = 'a lazy_t
type 'a lazy_t = 'a lazy_t_
*)

type in_channel_ = in_channel
type in_channel = in_channel_

type out_channel_ = out_channel
type out_channel = out_channel_


type nonrec floatarray = floatarray

type ('a, 'b, 'c, 'd, 'e, 'f) format6 =
    ('a, 'b, 'c, 'd, 'e, 'f) CamlinternalFormatBasics.format6

(*
type floatarray = float array


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_

(*
type ('a, 'b, 'c, 'd, 'e, 'f) format6 =
    ('a, 'b, 'c, 'f) format4
*)
*)


type nonrec bytes = bytes

(*
type bytes = string
*)

type ('a, 'b) result =

('a, 'b) Stdlib.result =

(*

('a, 'b) Pervasives.result =

(*
(*
('a, 'b) Result.result =
*)
*)
*)
  | Ok of 'a 
  | Error of 'b


type 'a seq = unit -> 'a seq_node
and 'a seq_node = 'a Seq.node =
  | Nil 
  | Cons of 'a * 'a seq

(*
type 'a seq = unit -> 'a seq_node
and 'a seq_node =
(*
  'a Seq.node =
*)
  | Nil
  | Cons of 'a * 'a seq
*)


type ('a, 'b) either = ('a, 'b) Either.t =
  | Left of 'a
  | Right of 'b

(*
type ('a, 'b) either =
  | Left of 'a
  | Right of 'b
*)
OCaml

Innovation. Community. Security.