package irmin
Irmin, a distributed database that follows the same design principles as Git
Install
Dune Dependency
Authors
Maintainers
Sources
irmin-2.2.0.tbz
sha256=a44e018495336e0f632433fcae7b4e84699938a7110212da9e3818b35048fc3f
sha512=8dd9e9f09877a5541ee1be3387e041f63e6b522f9efac388d72199f965b0692f2502e93c1ddc2a5f959289fa2f75f06849582cffbcc201de19e9bd50413f6115
doc/src/irmin.type/type_ordered.ml.html
Source file type_ordered.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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
(* * Copyright (c) 2016-2017 Thomas Gazagnaire <thomas@gazagnaire.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *) open Type_core module Refl = struct open Witness let prim : type a b. a prim -> b prim -> (a, b) eq option = fun a b -> match (a, b) with | Unit, Unit -> Some Refl | Bool, Bool -> Some Refl | Char, Char -> Some Refl | Int, Int -> Some Refl | Int32, Int32 -> Some Refl | Int64, Int64 -> Some Refl | Float, Float -> Some Refl | String _, String _ -> Some Refl | Bytes _, Bytes _ -> Some Refl | _ -> None let rec t : type a b. a ty -> b ty -> (a, b) eq option = fun a b -> match (a, b) with | Self a, _ -> t a.self_fix b | _, Self b -> t a b.self_fix | Map a, Map b -> Witness.eq a.mwit b.mwit | Custom a, Custom b -> custom a b | Prim a, Prim b -> prim a b | Array a, Array b -> ( match t a.v b.v with Some Refl -> Some Refl | None -> None ) | List a, List b -> ( match t a.v b.v with Some Refl -> Some Refl | None -> None ) | Tuple a, Tuple b -> tuple a b | Option a, Option b -> ( match t a b with Some Refl -> Some Refl | None -> None ) | Record a, Record b -> Witness.eq a.rwit b.rwit | Variant a, Variant b -> Witness.eq a.vwit b.vwit | _ -> None and custom : type a b. a custom -> b custom -> (a, b) eq option = fun a b -> match (a.cwit, b.cwit) with | `Witness a, `Witness b -> Witness.eq a b | `Type a, `Type b -> t a b | _ -> None and tuple : type a b. a tuple -> b tuple -> (a, b) eq option = fun a b -> match (a, b) with | Pair (a0, a1), Pair (b0, b1) -> ( match (t a0 b0, t a1 b1) with | Some Refl, Some Refl -> Some Refl | _ -> None ) | Triple (a0, a1, a2), Triple (b0, b1, b2) -> ( match (t a0 b0, t a1 b1, t a2 b2) with | Some Refl, Some Refl, Some Refl -> Some Refl | _ -> None ) | _ -> None end module Equal = struct let unit _ _ = true let bool (x : bool) (y : bool) = x = y let char (x : char) (y : char) = x = y let int (x : int) (y : int) = x = y let int32 (x : int32) (y : int32) = x = y let int64 (x : int64) (y : int64) = x = y let string x y = x == y || String.equal x y let bytes x y = x == y || Bytes.equal x y (* NOTE: equality is ill-defined on float *) let float (x : float) (y : float) = x = y let list e x y = x == y || (List.length x = List.length y && List.for_all2 e x y) let array e x y = x == y || Array.length x = Array.length y && let rec aux = function | -1 -> true | i -> e x.(i) y.(i) && aux (i - 1) in aux (Array.length x - 1) let pair ex ey ((x1, y1) as a) ((x2, y2) as b) = a == b || (ex x1 x2 && ey y1 y2) let triple ex ey ez ((x1, y1, z1) as a) ((x2, y2, z2) as b) = a == b || (ex x1 x2 && ey y1 y2 && ez z1 z2) let option e x y = x == y || match (x, y) with | None, None -> true | Some x, Some y -> e x y | _ -> false let rec t : type a. a t -> a equal = fun ty a b -> match ty with | Self s -> t s.self_fix a b | Custom c -> c.equal a b | Map m -> map m a b | Prim p -> prim p a b | List l -> list (t l.v) a b | Array x -> array (t x.v) a b | Tuple t -> tuple t a b | Option x -> option (t x) a b | Record r -> record r a b | Variant v -> variant v a b | Var v -> raise (Unbound_type_variable v) and tuple : type a. a tuple -> a equal = function | Pair (a, b) -> pair (t a) (t b) | Triple (a, b, c) -> triple (t a) (t b) (t c) and map : type a b. (a, b) map -> b equal = fun { x; g; _ } u v -> t x (g u) (g v) and prim : type a. a prim -> a equal = function | Unit -> unit | Bool -> bool | Char -> char | Int -> int | Int32 -> int32 | Int64 -> int64 | Float -> float | String _ -> string | Bytes _ -> bytes and record : type a. a record -> a equal = fun r x y -> List.for_all (function Field f -> field f x y) (fields r) and field : type a b. (a, b) field -> a equal = fun f x y -> t f.ftype (f.fget x) (f.fget y) and variant : type a. a variant -> a equal = fun v x y -> case_v (v.vget x) (v.vget y) and case_v : type a. a case_v equal = fun x y -> match (x, y) with | CV0 x, CV0 y -> int x.ctag0 y.ctag0 | CV1 (x, vx), CV1 (y, vy) -> int x.ctag1 y.ctag1 && eq (x.ctype1, vx) (y.ctype1, vy) | _ -> false and eq : type a b. a t * a -> b t * b -> bool = fun (tx, x) (ty, y) -> match Refl.t tx ty with | Some Witness.Refl -> t tx x y | None -> assert false (* this should never happen *) end module Compare = struct let unit (_ : unit) (_ : unit) = 0 [@@inline always] let bool (x : bool) (y : bool) = compare x y [@@inline always] let char x y = Char.compare x y [@@inline always] let int (x : int) (y : int) = compare x y [@@inline always] let int32 x y = Int32.compare x y [@@inline always] let int64 x y = Int64.compare x y [@@inline always] let float (x : float) (y : float) = compare x y [@@inline always] let string x y = if x == y then 0 else String.compare x y [@@inline always] let bytes x y = if x == y then 0 else Bytes.compare x y [@@inline always] let list c x y = if x == y then 0 else let rec aux x y = match (x, y) with | [], [] -> 0 | [], _ -> -1 | _, [] -> 1 | xx :: x, yy :: y -> ( match c xx yy with 0 -> aux x y | i -> i ) in aux x y let array c x y = if x == y then 0 else let lenx = Array.length x in let leny = Array.length y in if lenx > leny then 1 else if lenx < leny then -1 else let rec aux i = match c x.(i) y.(i) with | 0 when i + 1 = lenx -> 0 | 0 -> aux (i + 1) | i -> i in aux 0 let pair cx cy ((x1, y1) as a) ((x2, y2) as b) = if a == b then 0 else match cx x1 x2 with 0 -> cy y1 y2 | i -> i let triple cx cy cz ((x1, y1, z1) as a) ((x2, y2, z2) as b) = if a == b then 0 else match cx x1 x2 with 0 -> pair cy cz (y1, z1) (y2, z2) | i -> i let option c x y = if x == y then 0 else match (x, y) with | None, None -> 0 | Some _, None -> 1 | None, Some _ -> -1 | Some x, Some y -> c x y let prim : type a. a prim -> a compare = fun ty a b -> match ty with | Unit -> (unit [@inlined]) a b | Bool -> (bool [@inlined]) a b | Char -> (char [@inlined]) a b | Int -> (int [@inlined]) a b | Int32 -> (int32 [@inlined]) a b | Int64 -> (int64 [@inlined]) a b | Float -> (float [@inlined]) a b | String _ -> (string [@inlined]) a b | Bytes _ -> (bytes [@inlined]) a b [@@inline always] let rec t : type a. a t -> a compare = fun ty a b -> match ty with | Self s -> t s.self_fix a b | Custom c -> c.compare a b | Map m -> map m a b | Prim p -> (prim [@inlined]) p a b | List l -> list (t l.v) a b | Array x -> array (t x.v) a b | Tuple t -> tuple t a b | Option x -> option (t x) a b | Record r -> record r a b | Variant v -> variant v a b | Var v -> raise (Unbound_type_variable v) and tuple : type a. a tuple -> a compare = function | Pair (x, y) -> pair (t x) (t y) | Triple (x, y, z) -> triple (t x) (t y) (t z) and map : type a b. (a, b) map -> b compare = fun { x; g; _ } u v -> t x (g u) (g v) and record : type a. a record -> a compare = fun r x y -> let rec aux = function | [] -> 0 | Field f :: t -> ( match field f x y with 0 -> aux t | i -> i ) in aux (fields r) and field : type a b. (a, b) field -> a compare = fun f x y -> t f.ftype (f.fget x) (f.fget y) and variant : type a. a variant -> a compare = fun v x y -> case_v (v.vget x) (v.vget y) and case_v : type a. a case_v compare = fun x y -> match (x, y) with | CV0 x, CV0 y -> int x.ctag0 y.ctag0 | CV0 x, CV1 (y, _) -> int x.ctag0 y.ctag1 | CV1 (x, _), CV0 y -> int x.ctag1 y.ctag0 | CV1 (x, vx), CV1 (y, vy) -> ( match int x.ctag1 y.ctag1 with | 0 -> compare (x.ctype1, vx) (y.ctype1, vy) | i -> i ) and compare : type a b. a t * a -> b t * b -> int = fun (tx, x) (ty, y) -> match Refl.t tx ty with | Some Witness.Refl -> t tx x y | None -> assert false (* this should never happen *) end let equal = Equal.t let compare t x y = Compare.t t x y
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>