summaryrefslogtreecommitdiff
path: root/stdlib/stdlib.mli
diff options
context:
space:
mode:
authorKC Sivaramakrishnan <kc@kcsrk.info>2021-10-11 13:25:45 +0530
committerKC Sivaramakrishnan <kc@kcsrk.info>2021-10-11 16:40:04 +0530
commit5c737aee6d9b4bf53802490f8e08aee3cff511f3 (patch)
tree25bae761bc9ceec441f88af1840911c22ad23d34 /stdlib/stdlib.mli
parent610b387c2569b49ca23f8b055c0c0bec9787b84b (diff)
downloadocaml-5c737aee6d9b4bf53802490f8e08aee3cff511f3.tar.gz
Move effect handlers to its own module in Stdlib
Diffstat (limited to 'stdlib/stdlib.mli')
-rw-r--r--stdlib/stdlib.mli123
1 files changed, 62 insertions, 61 deletions
diff --git a/stdlib/stdlib.mli b/stdlib/stdlib.mli
index c3ebb33dbf..d285c6f7ff 100644
--- a/stdlib/stdlib.mli
+++ b/stdlib/stdlib.mli
@@ -1378,70 +1378,71 @@ external nop : unit -> unit = "%nop"
(** {1:modules Standard library modules } *)
(*MODULE_ALIASES*)
-module Arg = Arg
-module Array = Array
-module ArrayLabels = ArrayLabels
-module Atomic = Atomic
-module Bigarray = Bigarray
-module Bool = Bool
-module Buffer = Buffer
-module Bytes = Bytes
-module BytesLabels = BytesLabels
-module Callback = Callback
-module Char = Char
-module Complex = Complex
-module Condition = Condition
-module Digest = Digest
-module Domain = Domain
-module Either = Either
-module Ephemeron = Ephemeron
-module Filename = Filename
-module Float = Float
-module Format = Format
-module Fun = Fun
-module Gc = Gc
-module Genlex = Genlex
+module Arg = Arg
+module Array = Array
+module ArrayLabels = ArrayLabels
+module Atomic = Atomic
+module Bigarray = Bigarray
+module Bool = Bool
+module Buffer = Buffer
+module Bytes = Bytes
+module BytesLabels = BytesLabels
+module Callback = Callback
+module Char = Char
+module Complex = Complex
+module Condition = Condition
+module Digest = Digest
+module Domain = Domain
+module EffectHandlers = EffectHandlers
+module Either = Either
+module Ephemeron = Ephemeron
+module Filename = Filename
+module Float = Float
+module Format = Format
+module Fun = Fun
+module Gc = Gc
+module Genlex = Genlex
[@@deprecated "Use the camlp-streams library instead."]
-module Hashtbl = Hashtbl
-module In_channel = In_channel
-module Int = Int
-module Int32 = Int32
-module Int64 = Int64
-module Lazy = Lazy
-module Lexing = Lexing
-module List = List
-module ListLabels = ListLabels
-module Map = Map
-module Marshal = Marshal
-module MoreLabels = MoreLabels
-module Mutex = Mutex
-module Nativeint = Nativeint
-module Obj = Obj
-module Oo = Oo
-module Option = Option
-module Out_channel = Out_channel
-module Parsing = Parsing
-module Pervasives = Pervasives
+module Hashtbl = Hashtbl
+module In_channel = In_channel
+module Int = Int
+module Int32 = Int32
+module Int64 = Int64
+module Lazy = Lazy
+module Lexing = Lexing
+module List = List
+module ListLabels = ListLabels
+module Map = Map
+module Marshal = Marshal
+module MoreLabels = MoreLabels
+module Mutex = Mutex
+module Nativeint = Nativeint
+module Obj = Obj
+module Oo = Oo
+module Option = Option
+module Out_channel = Out_channel
+module Parsing = Parsing
+module Pervasives = Pervasives
[@@deprecated "Use Stdlib instead.\n\
\n\
If you need to stay compatible with OCaml < 4.07, you can use the \n\
stdlib-shims library: https://github.com/ocaml/stdlib-shims"]
-module Printexc = Printexc
-module Printf = Printf
-module Queue = Queue
-module Random = Random
-module Result = Result
-module Scanf = Scanf
-module Semaphore = Semaphore
-module Seq = Seq
-module Set = Set
-module Stack = Stack
-module StdLabels = StdLabels
-module Stream = Stream
+module Printexc = Printexc
+module Printf = Printf
+module Queue = Queue
+module Random = Random
+module Result = Result
+module Scanf = Scanf
+module Semaphore = Semaphore
+module Seq = Seq
+module Set = Set
+module Stack = Stack
+module StdLabels = StdLabels
+module Stream = Stream
[@@deprecated "Use the camlp-streams library instead."]
-module String = String
-module StringLabels = StringLabels
-module Sys = Sys
-module Uchar = Uchar
-module Unit = Unit
-module Weak = Weak
+module String = String
+module StringLabels = StringLabels
+module Sys = Sys
+module Uchar = Uchar
+module Unit = Unit
+module Weak = Weak