package spin
OCaml project generator
Install
Dune Dependency
Authors
Maintainers
Sources
opam-spin-0.8.1.tbz
sha256=cd1ca43c7d3bb11be0b525642e57aa98e4d8250aea6c2fdb5c70b120449abdc1
sha512=0ff1e8886a49773d8ead3a21df1fb46697954fb43e875bd1ddc4cb95542fe0a767c556c432d78b47654a1f3d361800c234486e4cc237b9aa8d4df22e5a3a1ff9
doc/src/spin.std/result.ml.html
Source file result.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
include Stdlib.Result let both a b = match a with | Error e -> Error e | Ok a -> (match b with Error e -> Error e | Ok b -> Ok (a, b)) module Syntax = struct let ( >>= ) t f = bind t f let ( >>| ) t f = map f t let ( let* ) = ( >>= ) let ( let+ ) = ( >>| ) let ( and+ ) = both end open Syntax module List = struct let map f t = let rec loop acc = function | [] -> Ok (List.rev acc) | x :: xs -> f x >>= fun x -> loop (x :: acc) xs in loop [] t let all = let rec loop acc = function | [] -> Ok (List.rev acc) | t :: l -> t >>= fun x -> loop (x :: acc) l in fun l -> loop [] l let concat_map = let rec loop f acc = function | [] -> Ok (List.rev acc) | x :: l -> f x >>= fun y -> loop f (List.rev_append y acc) l in fun l f -> loop f [] l let rec iter f t = match t with [] -> Ok () | x :: xs -> f x >>= fun () -> iter f xs let rec fold_left f init t = match t with | [] -> Ok init | x :: xs -> f init x >>= fun init -> fold_left f init xs let rec iter_left f t = match t with [] -> Ok () | x :: xs -> f x >>= fun () -> iter_left f xs let filter_map t f = fold_left (fun acc x -> f x >>| function None -> acc | Some y -> y :: acc) [] t >>| List.rev end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>