package caqti
Unified interface to relational database libraries
Install
Dune Dependency
Authors
Maintainers
Sources
caqti-v1.5.0.tbz
sha256=9524c75c87677eb75e68fbbf421d84b7b610bf2f344bfa227e23465644e62e26
sha512=8c1f289d269d0017bf8b489e64c1153448c62f79a991349662722f4de74c0cbbd75dcdca266b7276af55200346d38dce8135da247e5fbc235a3660785a03b01f
doc/src/caqti/caqti_stream.ml.html
Source file caqti_stream.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
(* Copyright (C) 2018--2019 Petter A. Urkedal <paurkedal@gmail.com> * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or (at your * option) any later version, with the OCaml static compilation exception. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see <http://www.gnu.org/licenses/>. *) module type S = sig type +'a future type ('a, 'err) t = unit -> ('a, 'err) node future and ('a, 'err) node = | Nil | Error of 'err | Cons of 'a * ('a, 'err) t val fold : f: ('a -> 'state -> 'state) -> ('a, 'err) t -> 'state -> ('state, 'err) result future val fold_s : f: ('a -> 'state -> ('state, 'err) result future) -> ('a, 'clog) t -> 'state -> ('state, [> `Congested of 'clog ] as 'err) result future val iter_s : f: ('a -> (unit, 'err) result future) -> ('a, 'clog) t -> (unit, [> `Congested of 'clog ] as 'err) result future val to_rev_list : ('a, 'err) t -> ('a list, 'err) result future val to_list : ('a, 'err) t -> ('a list, 'err) result future val of_list : 'a list -> ('a, 'err) t end module type FUTURE = sig type +'a future val (>>=) : 'a future -> ('a -> 'b future) -> 'b future val (>|=) : 'a future -> ('a -> 'b) -> 'b future val return : 'a -> 'a future end module Make(X : FUTURE) : S with type 'a future := 'a X.future = struct open X let (>>=?) res_future f = res_future >>= function | Ok a -> f a | Error _ as r -> return r let (>|=?) res_future f = res_future >>= function | Ok a -> return @@ Ok (f a) | Error _ as r -> return r type ('a, 'err) t = unit -> ('a, 'err) node future and ('a, 'err) node = | Nil | Error of 'err | Cons of 'a * ('a, 'err) t let rec fold ~f t state = t () >>= function | Nil -> return (Ok state) | Error err -> return (Error err : ('a, 'err) result) | Cons (a, t') -> fold ~f t' (f a state) let rec fold_s ~f t state = t () >>= function | Nil -> return (Ok state) | Error err -> return (Error (`Congested err) : ('a, 'err) result) | Cons (a, t') -> f a state >>=? fold_s ~f t' let rec iter_s ~f t = t () >>= function | Nil -> return (Ok ()) | Error err -> return (Error (`Congested err) : ('a, 'err) result) | Cons (a, t') -> f a >>=? fun () -> iter_s ~f t' let to_rev_list t = fold ~f:List.cons t [] let to_list t = to_rev_list t >|=? List.rev let rec of_list l = fun () -> match l with | [] -> return Nil | hd::tl -> return (Cons (hd, (of_list tl))) end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>