Source file deferred_list.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
open Core
open Deferred_std
module Deferred = Deferred1
let foldi t ~init ~f =
Deferred.create (fun result ->
let rec loop t i b =
match t with
| [] -> Ivar.fill result b
| x :: xs -> f i b x >>> fun b -> loop xs (i + 1) b
in
loop t 0 init)
;;
let fold t ~init ~f = foldi t ~init ~f:(fun _ a x -> f a x)
let seqmapi t ~f =
foldi t ~init:[] ~f:(fun i bs a ->
let%map b = f i a in
b :: bs)
>>| List.rev
;;
let all ds = seqmapi ds ~f:(fun _ x -> x)
let all_unit ds = Deferred.ignore_m (fold ds ~init:() ~f:(fun () d -> d))
let iteri ~how t ~f =
match how with
| `Parallel as how ->
all_unit (List.mapi t ~f:(unstage (Throttle.monad_sequence_how2 ~how ~f)))
| `Max_concurrent_jobs job_count ->
let rec gen_computation idx = function
| x :: xs ->
Throttled.of_thunk (fun () ->
Throttled.both_unit
(Throttled.job (fun () -> f idx x))
(gen_computation (idx + 1) xs))
| [] -> Throttled.return ()
in
Throttled.run (gen_computation 0 t) ~max_concurrent_jobs:job_count
| `Sequential -> foldi t ~init:() ~f:(fun i () x -> f i x)
;;
let mapi ~how t ~f =
match how with
| `Parallel as how ->
all (List.mapi t ~f:(unstage (Throttle.monad_sequence_how2 ~how ~f)))
| `Max_concurrent_jobs job_count ->
let rec gen_computation idx = function
| x :: xs ->
Throttled.of_thunk (fun () ->
Throttled.map2
(Throttled.job (fun () -> f idx x))
(gen_computation (idx + 1) xs)
~f:(fun y ys -> y :: ys))
| [] -> Throttled.return []
in
Throttled.run (gen_computation 0 t) ~max_concurrent_jobs:job_count
| `Sequential -> seqmapi t ~f
;;
let filteri ~how t ~f =
let%map bools = mapi t ~how ~f in
List.rev (List.fold2_exn t bools ~init:[] ~f:(fun ac x b -> if b then x :: ac else ac))
;;
let filter_mapi ~how t ~f = mapi t ~how ~f >>| List.filter_opt
let concat_mapi ~how t ~f = mapi t ~how ~f >>| List.concat
let find_mapi t ~f =
let rec find_mapi t ~f i =
match t with
| [] -> return None
| hd :: tl ->
(match%bind f i hd with
| None -> find_mapi tl ~f (i + 1)
| Some _ as some -> return some)
in
find_mapi t ~f 0
;;
let findi t ~f =
find_mapi t ~f:(fun i elt ->
let%map b = f i elt in
if b then Some (i, elt) else None)
;;
let find t ~f =
find_mapi t ~f:(fun _ elt ->
let%map b = f elt in
if b then Some elt else None)
;;
let existsi t ~f =
match%map
find_mapi t ~f:(fun i elt ->
let%map b = f i elt in
if b then Some () else None)
with
| Some () -> true
| None -> false
;;
let for_alli t ~f =
match%map
find_mapi t ~f:(fun i elt ->
let%map b = f i elt in
if not b then Some () else None)
with
| Some () -> false
| None -> true
;;
let iter ~how t ~f = iteri ~how t ~f:(fun _ a -> f a)
let map ~how t ~f = mapi ~how t ~f:(fun _ a -> f a)
let filter ~how t ~f = filteri ~how t ~f:(fun _ a -> f a)
let filter_map ~how t ~f = filter_mapi ~how t ~f:(fun _ a -> f a)
let concat_map ~how t ~f = concat_mapi ~how t ~f:(fun _ a -> f a)
let find_map t ~f = find_mapi t ~f:(fun _ a -> f a)
let exists t ~f = existsi t ~f:(fun _ a -> f a)
let for_all t ~f = for_alli t ~f:(fun _ a -> f a)
let init ~how n ~f = map ~how (List.init n ~f:Fn.id) ~f