package awso-common
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
AWSO common library
Install
dune-project
Dependency
Authors
Maintainers
Sources
awso-0.9.1.tbz
sha256=e0e7510192b7e45871cff5c60e5162a77a9fa103b6924136fb1fea5db2092b26
sha512=51a18cf74c122b021bd84ef5728b7c5b2d5e767f03d5cd2387d886edc34a68cf54a3183e2d6c4939b4c8d3e0c0e406c869d019f2ee9a0903ae4cf7ca725572f0
doc/src/awso-common/jane_compat.ml.html
Source file jane_compat.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 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737(* Core/Base compatibility shim. AWSO used to depend on Jane Street's Core/Base but we removed that dependency out of the non-Async parts to keep the build lightweight for general release. This module re-implements the subset of the Core API that we actually use, built on top of Stdlib. Existing code can keep using Core-style calls (e.g. List.map ~f:, String.concat ~sep:, etc.) without changes. You should not be calling these functions from the Jane/Async runtime or utilities as the real Jane versions are better optimized. *) (* Mirror Core/Base: enable exception backtraces at module load time so users of Jane_compat get tracebacks without needing OCAMLRUNPARAM=b. *) let () = Printexc.record_backtrace true let sprintf = Printf.sprintf let printf = Printf.printf let eprintf = Printf.eprintf let bprintf = Printf.bprintf let failwithf fmt = Printf.ksprintf failwith fmt let ksprintf = Printf.ksprintf let ( ^/ ) = Filename.concat (* Shadow polymorphic compare/equality with int-only versions, matching Jane Street Base/Core convention. *) let ( = ) (a : int) (b : int) = a = b let ( <> ) (a : int) (b : int) = a <> b let ( < ) (a : int) (b : int) = a < b let ( > ) (a : int) (b : int) = a > b let ( <= ) (a : int) (b : int) = a <= b let ( >= ) (a : int) (b : int) = a >= b let compare (a : int) (b : int) = Stdlib.compare a b let equal (a : int) (b : int) = a = b let phys_equal (a : 'a) (b : 'a) = a == b type ('a, 'b) continue_or_stop = | Continue of 'a | Stop of 'b module Char = struct include Stdlib.Char let equal (a : char) (b : char) = Stdlib.( = ) a b let is_uppercase c = Stdlib.( >= ) c 'A' && Stdlib.( <= ) c 'Z' let is_lowercase c = Stdlib.( >= ) c 'a' && Stdlib.( <= ) c 'z' let to_string c = Stdlib.String.make 1 c let to_int = Stdlib.Char.code let is_whitespace = function | ' ' | '\t' | '\n' | '\r' | '\x0C' -> true | _ -> false ;; end module Fn = struct let id x = x let compose f g x = f (g x) let non f x = not (f x) let const c _ = c end module List = struct include Stdlib.List let map l ~f = Stdlib.List.map f l let iter l ~f = Stdlib.List.iter f l let filter l ~f = Stdlib.List.filter f l let filter_map l ~f = Stdlib.List.filter_map f l let find l ~f = Stdlib.List.find_opt f l let find_exn l ~f = match Stdlib.List.find_opt f l with | Some x -> x | None -> failwith "List.find_exn: not found" ;; let find_map l ~f = Stdlib.List.find_map f l let for_all l ~f = Stdlib.List.for_all f l let concat_map l ~f = Stdlib.List.concat_map f l let mapi l ~f = Stdlib.List.mapi f l let fold l ~init ~f = Stdlib.List.fold_left f init l let fold_right l ~init ~f = Stdlib.List.fold_right f l init let fold_left l ~init ~f = Stdlib.List.fold_left f init l let stable_sort l ~compare = Stdlib.List.stable_sort compare l let sort l ~compare = Stdlib.List.sort compare l let exists l ~f = Stdlib.List.exists f l let mem l x ~equal = Stdlib.List.exists (equal x) l let dedup_and_sort ~compare l = Stdlib.List.sort_uniq compare l let rev_map l ~f = Stdlib.List.rev_map f l let filter_opt l = Stdlib.List.filter_map Fn.id l let is_empty = function | [] -> true | _ -> false ;; let hd_exn = function | x :: _ -> x | [] -> failwith "List.hd_exn: empty list" ;; let return x = [ x ] let partition_tf l ~f = Stdlib.List.partition f l let init n ~f = let rec aux acc i = if i < 0 then acc else aux (f i :: acc) (i - 1) in aux [] (n - 1) ;; let take l n = let rec aux acc n = function | [] -> Stdlib.List.rev acc | _ when n <= 0 -> Stdlib.List.rev acc | x :: rest -> aux (x :: acc) (n - 1) rest in aux [] n l ;; let nth_exn l n = match Stdlib.List.nth_opt l n with | Some x -> x | None -> failwith (sprintf "List.nth_exn: index %d out of bounds" n) ;; let chunks_of l ~length = let rec aux acc current current_len = function | [] -> ( match current with | [] -> Stdlib.List.rev acc | _ -> Stdlib.List.rev (Stdlib.List.rev current :: acc)) | x :: rest -> if current_len >= length then aux (Stdlib.List.rev current :: acc) [ x ] 1 rest else aux acc (x :: current) (current_len + 1) rest in aux [] [] 0 l ;; let reduce_exn l ~f = match l with | [] -> failwith "List.reduce_exn: empty list" | x :: xs -> Stdlib.List.fold_left f x xs ;; let zip_exn l1 l2 = if Stdlib.List.length l1 <> Stdlib.List.length l2 then failwith "List.zip_exn: lists have different lengths" else Stdlib.List.combine l1 l2 ;; let fold_until l ~init ~f ~finish = let rec aux acc = function | [] -> finish acc | x :: rest -> ( match f acc x with | Continue acc -> aux acc rest | Stop result -> result) in aux init l ;; let range ?(start = `inclusive) ?(stop = `exclusive) a b = let lo = match start with | `inclusive -> a | `exclusive -> a + 1 in let hi = match stop with | `exclusive -> b | `inclusive -> b + 1 in let rec aux acc i = if i < lo then acc else aux (i :: acc) (i - 1) in aux [] (hi - 1) ;; module Assoc = struct type ('k, 'v) t = ('k * 'v) list let find l key ~equal = let rec aux = function | [] -> None | (k, v) :: _ when equal k key -> Some v | _ :: rest -> aux rest in aux l ;; let find_exn l key ~equal = match find l key ~equal with | Some v -> v | None -> failwith "List.Assoc.find_exn: key not found" ;; let mem l key ~equal = let rec aux = function | [] -> false | (k, _) :: _ when equal k key -> true | _ :: rest -> aux rest in aux l ;; end end module String = struct include Stdlib.String let hash (s : string) = Stdlib.Hashtbl.hash s let equal = Stdlib.String.equal let concat ?(sep = "") l = Stdlib.String.concat sep l let map s ~f = Stdlib.String.map f s let capitalize = Stdlib.String.capitalize_ascii let uncapitalize = Stdlib.String.uncapitalize_ascii let lowercase = Stdlib.String.lowercase_ascii let is_prefix s ~prefix = Stdlib.String.starts_with ~prefix s let is_suffix s ~suffix = Stdlib.String.ends_with ~suffix s let of_char c = Stdlib.String.make 1 c let init n ~f = Stdlib.String.init n f let is_empty s = Stdlib.String.length s = 0 let for_all s ~f = let len = Stdlib.String.length s in let rec aux i = if i >= len then true else f (Stdlib.String.get s i) && aux (i + 1) in aux 0 ;; let rstrip s = let len = Stdlib.String.length s in let j = ref (len - 1) in while !j >= 0 && Char.is_whitespace (Stdlib.String.get s !j) do decr j done; if !j >= len - 1 then s else Stdlib.String.sub s 0 (!j + 1) ;; let chop_prefix_exn s ~prefix = if Stdlib.String.starts_with ~prefix s then Stdlib.String.sub s (Stdlib.String.length prefix) (Stdlib.String.length s - Stdlib.String.length prefix) else failwithf "%S does not start with %S" s prefix () ;; let lsplit2_exn s ~on = match Stdlib.String.index_opt s on with | Some i -> Stdlib.String.sub s 0 i, Stdlib.String.sub s (i + 1) (Stdlib.String.length s - i - 1) | None -> failwithf "String.lsplit2_exn: %C not found in %S" on s () ;; let strip s = let len = Stdlib.String.length s in let is_ws c = Char.equal c ' ' || Char.equal c '\t' || Char.equal c '\n' || Char.equal c '\r' in let i = ref 0 in while !i < len && is_ws (Stdlib.String.get s !i) do incr i done; let j = ref (len - 1) in while !j >= !i && is_ws (Stdlib.String.get s !j) do decr j done; if !i > !j then "" else Stdlib.String.sub s !i (!j - !i + 1) ;; let lsplit2 s ~on = match Stdlib.String.index_opt s on with | None -> None | Some i -> Some ( Stdlib.String.sub s 0 i , Stdlib.String.sub s (i + 1) (Stdlib.String.length s - i - 1) ) ;; let chop_suffix_exn s ~suffix = if Stdlib.String.ends_with ~suffix s then Stdlib.String.sub s 0 (Stdlib.String.length s - Stdlib.String.length suffix) else failwithf "%S does not end with %S" s suffix () ;; let chop_prefix s ~prefix = if Stdlib.String.starts_with ~prefix s then Some (Stdlib.String.sub s (Stdlib.String.length prefix) (Stdlib.String.length s - Stdlib.String.length prefix)) else None ;; let chop_suffix s ~suffix = if Stdlib.String.ends_with ~suffix s then Some (Stdlib.String.sub s 0 (Stdlib.String.length s - Stdlib.String.length suffix)) else None ;; let concat_map s ~f = let buf = Buffer.create (Stdlib.String.length s * 2) in Stdlib.String.iter (fun c -> Buffer.add_string buf (f c)) s; Buffer.contents buf ;; let lfindi s ~f = let len = Stdlib.String.length s in let rec aux i = if i >= len then None else if f i (Stdlib.String.get s i) then Some i else aux (i + 1) in aux 0 ;; let slice s start stop = let len = Stdlib.String.length s in let start = if start < 0 then Stdlib.max 0 (len + start) else start in let stop = if stop < 0 then Stdlib.max 0 (len + stop) else Stdlib.min stop len in if start >= stop then "" else Stdlib.String.sub s start (stop - start) ;; let to_list s = Stdlib.List.init (Stdlib.String.length s) (Stdlib.String.get s) let split s ~on = Stdlib.String.split_on_char on s let substr_replace_all s ~pattern ~with_ = let plen = Stdlib.String.length pattern in if plen = 0 then s else ( let buf = Buffer.create (Stdlib.String.length s) in let slen = Stdlib.String.length s in let i = ref 0 in while !i <= slen - plen do if Stdlib.String.equal (Stdlib.String.sub s !i plen) pattern then ( Buffer.add_string buf with_; i := !i + plen) else ( Buffer.add_char buf (Stdlib.String.get s !i); incr i) done; while !i < slen do Buffer.add_char buf (Stdlib.String.get s !i); incr i done; Buffer.contents buf) ;; module Set = struct include Set.Make (Stdlib.String) let of_list l = Stdlib.List.fold_left (fun s x -> add x s) empty l let to_list s = elements s end module Map = struct include Map.Make (Stdlib.String) let of_alist_exn l = Stdlib.List.fold_left (fun m (k, v) -> if mem k m then failwithf "String.Map.of_alist_exn: duplicate key %S" k () else add k v m) empty l ;; let find_exn k m = match find_opt k m with | Some v -> v | None -> failwithf "String.Map.find_exn: key %S not found" k () ;; end module Table = struct let create () : (string, 'a) Stdlib.Hashtbl.t = Stdlib.Hashtbl.create 64 end module Caseless = struct let equal a b = Stdlib.String.equal (lowercase_ascii a) (lowercase_ascii b) module Map = struct module M = Stdlib.Map.Make (struct type t = string let compare a b = Stdlib.String.compare (lowercase_ascii a) (lowercase_ascii b) end) include M let of_alist_multi l = Stdlib.List.fold_left (fun m (k, v) -> M.update k (function | None -> Some [ v ] | Some vs -> Some (vs @ [ v ])) m) M.empty l ;; end end let ( = ) = Stdlib.String.equal end module Set = struct type 'a t = String.Set.t let diff = String.Set.diff let to_list = String.Set.to_list let add s x = String.Set.add x s let mem s x = String.Set.mem x s let is_empty = String.Set.is_empty let of_list = String.Set.of_list let empty = String.Set.empty end module Map = struct type ('k, 'v) t = 'v String.Map.t let find m k = String.Map.find_opt k m let find_exn m k = String.Map.find_exn k m let set m ~key ~data = String.Map.add key data m let mem m k = String.Map.mem k m let of_alist_exn = String.Map.of_alist_exn let to_alist m = String.Map.bindings m end module Hashtbl = struct include Stdlib.Hashtbl let add_exn tbl ~key ~data = if Stdlib.Hashtbl.mem tbl key then failwith "Hashtbl.add_exn: key already present" else Stdlib.Hashtbl.replace tbl key data ;; let find tbl key = Stdlib.Hashtbl.find_opt tbl key end module Option = struct let value x ~default = match x with | Some v -> v | None -> default ;; let value_exn ?here:_ ?error:_ ?message x = match x, message with | Some v, _ -> v | None, Some msg -> failwith msg | None, None -> failwith "Option.value_exn: None" ;; let map x ~f = match x with | Some v -> Some (f v) | None -> None ;; let bind x ~f = match x with | Some v -> f v | None -> None ;; let value_map x ~default ~f = match x with | Some v -> f v | None -> default ;; let is_some = function | Some _ -> true | None -> false ;; let is_none = function | None -> true | Some _ -> false ;; let some x = Some x let some_if cond x = if cond then Some x else None let first_some a b = match a with | Some _ -> a | None -> b ;; let try_with f = try Some (f ()) with | _ -> None ;; let equal eq a b = match a, b with | None, None -> true | Some a, Some b -> eq a b | _ -> false ;; module Let_syntax = struct module Let_syntax = struct let map x ~f = map x ~f let bind x ~f = bind x ~f let both a b = match a, b with | Some a, Some b -> Some (a, b) | _ -> None ;; end let ( >>| ) x f = map x ~f let ( >>= ) x f = bind x ~f end let ( >>| ) x f = map x ~f let ( >>= ) x f = bind x ~f end module Result = struct type ('a, 'e) t = ('a, 'e) Stdlib.result let map x ~f = match x with | Ok v -> Ok (f v) | Error _ as e -> e ;; let map_error x ~f = match x with | Ok _ as ok -> ok | Error e -> Error (f e) ;; let bind x ~f = match x with | Ok v -> f v | Error _ as e -> e ;; let all l = let rec aux acc = function | [] -> Ok (Stdlib.List.rev acc) | Ok x :: rest -> aux (x :: acc) rest | (Error _ as e) :: _ -> e in aux [] l ;; let combine_errors l = let rec aux oks errs = function | [] -> ( match errs with | [] -> Ok (Stdlib.List.rev oks) | _ -> Error (Stdlib.List.rev errs)) | Ok x :: rest -> aux (x :: oks) errs rest | Error e :: rest -> aux oks (e :: errs) rest in aux [] [] l ;; let failf fmt = Printf.ksprintf (fun s -> Error s) fmt let ok_or_failwith = function | Ok x -> x | Error s -> failwith s ;; let of_option x ~error = match x with | Some v -> Ok v | None -> Error error ;; let return x = Ok x let try_with f = try Ok (f ()) with | e -> Error e ;; let ( >>= ) x f = bind x ~f let ( >>| ) x f = map x ~f module Let_syntax = struct module Let_syntax = struct let map x ~f = map x ~f let bind x ~f = bind x ~f let both a b = match a, b with | Ok a, Ok b -> Ok (a, b) | (Error _ as e), _ -> e | _, (Error _ as e) -> e ;; end end end module Int = struct include Stdlib.Int let compare (a : int) (b : int) = Stdlib.compare a b let equal (a : int) (b : int) = Stdlib.( = ) a b let ( > ) (a : int) (b : int) = Stdlib.( > ) a b let ( < ) (a : int) (b : int) = Stdlib.( < ) a b let ( >= ) (a : int) (b : int) = Stdlib.( >= ) a b let ( <= ) (a : int) (b : int) = Stdlib.( <= ) a b let ( = ) (a : int) (b : int) = Stdlib.( = ) a b let to_string = Stdlib.string_of_int let of_string = Stdlib.int_of_string let of_float = Stdlib.int_of_float let to_int64 = Stdlib.Int64.of_int let max_value = Stdlib.max_int let succ = Stdlib.succ end module Int64 = struct include Stdlib.Int64 let compare (a : int64) (b : int64) = Stdlib.Int64.compare a b let equal (a : int64) (b : int64) = Stdlib.Int64.equal a b let ( = ) (a : int64) (b : int64) = Stdlib.Int64.equal a b let ( >= ) (a : int64) (b : int64) = Stdlib.( >= ) (Stdlib.Int64.compare a b) 0 let ( <= ) (a : int64) (b : int64) = Stdlib.( <= ) (Stdlib.Int64.compare a b) 0 let ( > ) (a : int64) (b : int64) = Stdlib.( > ) (Stdlib.Int64.compare a b) 0 let ( < ) (a : int64) (b : int64) = Stdlib.( < ) (Stdlib.Int64.compare a b) 0 let of_float = Stdlib.Int64.of_float let of_int = Stdlib.Int64.of_int let to_string = Stdlib.Int64.to_string let min_value = Stdlib.Int64.min_int let max_value = Stdlib.Int64.max_int let succ x = Stdlib.Int64.add x 1L let pred x = Stdlib.Int64.sub x 1L let ( * ) = Stdlib.Int64.mul let ( + ) = Stdlib.Int64.add let ( - ) = Stdlib.Int64.sub let ( / ) = Stdlib.Int64.div let rem = Stdlib.Int64.rem let to_int_exn x = if Stdlib.( > ) (Stdlib.Int64.compare x (Stdlib.Int64.of_int Stdlib.max_int)) 0 || Stdlib.( < ) (Stdlib.Int64.compare x (Stdlib.Int64.of_int Stdlib.min_int)) 0 then failwith "Int64.to_int_exn: overflow" else Stdlib.Int64.to_int x ;; end module Float = struct include Stdlib.Float let of_int = Stdlib.float_of_int let to_int = Stdlib.int_of_float let round_up x = Stdlib.ceil x let ( / ) = ( /. ) let ( >= ) (a : float) (b : float) = Stdlib.( >= ) a b let ( <= ) (a : float) (b : float) = Stdlib.( <= ) a b let ( > ) (a : float) (b : float) = Stdlib.( > ) a b let ( < ) (a : float) (b : float) = Stdlib.( < ) a b let ( = ) (a : float) (b : float) = Stdlib.( = ) a b let to_string = Stdlib.string_of_float end module Bool = struct include Stdlib.Bool let to_string = Stdlib.string_of_bool let of_string = Stdlib.bool_of_string let equal (a : bool) (b : bool) = Stdlib.( = ) a b end module Array = struct include Stdlib.Array let to_list = Stdlib.Array.to_list let foldi a ~init ~f = let acc = ref init in Stdlib.Array.iteri (fun i x -> acc := f i !acc x) a; !acc ;; end module Exn = struct let to_string e = match e with | Failure msg -> sprintf "(Failure %S)" msg | Invalid_argument msg -> sprintf "(Invalid_argument %S)" msg | _ -> Printexc.to_string e ;; end module Memo = struct let general (type a b) (f : a -> b) : a -> b = let tbl : (a, (b, exn) result) Stdlib.Hashtbl.t = Stdlib.Hashtbl.create 16 in fun x -> let r = match Stdlib.Hashtbl.find_opt tbl x with | Some r -> r | None -> let r = try Ok (f x) with | e -> Error e in Stdlib.Hashtbl.replace tbl x r; r in match r with | Ok y -> y | Error e -> raise e ;; let unit (compute : unit -> 'a) : unit -> 'a = let l = Stdlib.Lazy.from_fun compute in fun () -> Stdlib.Lazy.force l ;; end let read_file path = In_channel.with_open_bin path In_channel.input_all let write_file path data = Out_channel.with_open_bin path (fun oc -> output_string oc data) ;;
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>