package mnd
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Source file mnd.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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192(* MIT License Copyright (c) [2022] [Mauro Bringolf] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *) module type MONAD2_DEF = sig type ('a, 'b) t val return : 'a -> ('a, 'b) t val map : ('a1 -> 'a2) -> ('a1, 'b) t -> ('a2, 'b) t val bind : ('a1, 'b) t -> ('a1 -> ('a2, 'b) t) -> ('a2, 'b) t end module type MONAD2 = sig include MONAD2_DEF val ( let* ) : ('a1, 'b) t -> ('a1 -> ('a2, 'b) t) -> ('a2, 'b) t val ( let+ ) : ('a1, 'b) t -> ('a1 -> 'a2) -> ('a2, 'b) t val ( >>= ) : ('a1, 'b) t -> ('a1 -> ('a2, 'b) t) -> ('a2, 'b) t val ( >> ) : ('a1, 'b) t -> ('a2, 'b) t -> ('a2, 'b) t val ( |>> ) : ('a, 'e) t -> ('a -> 'b) -> ('b, 'e) t val foldM : ('a2 -> 'a1 -> ('a2, 'b) t) -> 'a2 -> 'a1 list -> ('a2, 'b) t val fold1M : ('a -> 'a -> ('a, 'b) t) -> 'a list -> ('a, 'b) t val iterM : ('a -> (unit, 'b) t) -> 'a list -> (unit, 'b) t val forM : 'a list -> ('a -> ('b, 'c) t) -> ('b list, 'c) t val mapM : ('a -> ('b, 'e) t) -> 'a list -> ('b list, 'e) t val ifM : bool -> (unit -> (unit, 'e) t) -> (unit, 'e) t end module Make2 (M : MONAD2_DEF) : MONAD2 with type ('a, 'b) t = ('a, 'b) M.t = struct include M let ( let* ) = M.bind let ( let+ ) x f = M.map f x let ( >>= ) = M.bind let ( >> ) x y = x >>= fun _ -> y let ( |>> ) x y = M.map y x let foldM f acc xs = List.fold_left (fun acc x -> acc >>= fun a -> f a x) (return acc) xs let fold1M f = function | [] -> invalid_arg "fold1M of empty list" | x :: xs -> foldM f x xs let rec mapM m xs = match xs with | [] -> return [] | x :: xs -> let* y = m x in let* ys = mapM m xs in return (y :: ys) let forM xs m = mapM m xs let iterM m xs = mapM m xs >> return () let ifM cond m = if cond then m () else return () end module type MONAD_DEF = sig type 'a t val return : 'a -> 'a t val map : ('a1 -> 'a2) -> 'a1 t -> 'a2 t val bind : 'a1 t -> ('a1 -> 'a2 t) -> 'a2 t end (** The monad interface with [let*]-syntax, common operators and functions. These are the elements you get when instantiating a monad with {!Make}.*) module type MONAD = sig include MONAD_DEF val ( let+ ) : 'a1 t -> ('a1 -> 'a2) -> 'a2 t val ( let* ) : 'a1 t -> ('a1 -> 'a2 t) -> 'a2 t val ( >>= ) : 'a1 t -> ('a1 -> 'a2 t) -> 'a2 t val ( >> ) : 'a1 t -> 'a2 t -> 'a2 t val ( |>> ) : 'a t -> ('a -> 'b) -> 'b t val foldM : ('a2 -> 'a1 -> 'a2 t) -> 'a2 -> 'a1 list -> 'a2 t val fold1M : ('a -> 'a -> 'a t) -> 'a list -> 'a t val mapM : ('a -> 'b t) -> 'a list -> 'b list t val forM : 'a list -> ('a -> 'b t) -> 'b list t val iterM : ('a -> unit t) -> 'a list -> unit t val ifM : bool -> (unit -> unit t) -> unit t end (** Functor to instantiate the [MONAD] interface for custom monads by providing a [MONAD_DEF]. *) module Make (M : MONAD_DEF) = struct include Make2 (struct include M type ('a, 'b) t = 'a M.t end) type 'a t = 'a M.t end module Instances = struct module Option = Make (struct type 'a t = 'a option let bind = Option.bind let map = Option.map let return = Option.some end) module Result = struct include Make2 (struct type ('a, 'b) t = ('a, 'b) Stdlib.Result.t let bind = Stdlib.Result.bind let map = Stdlib.Result.map let return = Stdlib.Result.ok end) let error = Stdlib.Result.error end module State = struct include Make2 (struct type ('a, 'b) t = 'b -> 'b * 'a let bind m1 m2 s = let s1, x = m1 s in m2 x s1 let map f m s = let s, r = m s in (s, f r) let return x s = (s, x) end) let run (init : 'b) (m : ('a, 'b) t) : 'a = snd (m init) let get : ('b, 'b) t = fun s -> (s, s) let put (s : 'b) : (unit, 'b) t = fun _ -> (s, ()) end module Reader = struct include Make2 (struct type ('a, 'b) t = 'b -> 'a let bind m1 m2 s = m2 (m1 s) s let map f m s = f (m s) let return x _ = x end) let read : ('b, 'b) t = fun e -> e let run (init : 'b) (m : ('a, 'b) t) : 'a = m init end module type MONOID = sig type t val mempty : t val mappend : t -> t -> t end module Writer (M : MONOID) = struct include Make (struct type 'a t = 'a * M.t let bind (x, y1) m = let r, y2 = m x in (r, M.mappend y1 y2) let map f (x, y) = (f x, y) let return x = (x, M.mempty) end) let write (y : M.t) = ((), y) end end