package tezos-lwt-result-stdlib

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file 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
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
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
(*****************************************************************************)
(*                                                                           *)
(* Open Source License                                                       *)
(* Copyright (c) 2020 Nomadic Labs <contact@nomadic-labs.com>                *)
(*                                                                           *)
(* Permission is hereby granted, free of charge, to any person obtaining a   *)
(* copy of this software and associated documentation files (the "Software"),*)
(* to deal in the Software without restriction, including without limitation *)
(* the rights to use, copy, modify, merge, publish, distribute, sublicense,  *)
(* and/or sell copies of the Software, and to permit persons to whom the     *)
(* Software is furnished to do so, subject to the following conditions:      *)
(*                                                                           *)
(* The above copyright notice and this permission notice shall be included   *)
(* in all copies or substantial portions of the Software.                    *)
(*                                                                           *)
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  *)
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL   *)
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING   *)
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER       *)
(* DEALINGS IN THE SOFTWARE.                                                 *)
(*                                                                           *)
(*****************************************************************************)

open Monad
module Legacy = Stdlib.List
include Legacy

let nil = []

let nil_e = Ok []

let nil_s = Lwt.return_nil

let nil_es = Lwt.return nil_e

let hd = function x :: _ -> Some x | [] -> None

let tl = function _ :: xs -> Some xs | [] -> None

let nth xs n =
  if n < 0 then None
  else
    let rec aux xs n =
      match (xs, n) with
      | ([], _) -> None
      | (x :: _, 0) -> Some x
      | (_ :: xs, n) -> (aux [@ocaml.tailcall]) xs (n - 1)
    in
    aux xs n

let rec last hd = function
  | [] -> hd
  | [last] -> last
  | hd :: (_ :: _ as tl) -> (last [@ocaml.tailcall]) hd tl

let last_opt = function [] -> None | hd :: tl -> Some (last hd tl)

let find = find_opt

let rec iter2 ~when_different_lengths f xs ys =
  (* NOTE: We could do the following but we would need to assume [f] does not
       raise [Invalid_argument]
       [try
          Ok (iter2 f xs ys)
        with Invalid_argument _ ->
          Error when_different_lengths]
      The same remark applies to the other 2-list iterators.
  *)
  match (xs, ys) with
  | ([], []) -> Monad.unit_e
  | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
  | (x :: xs, y :: ys) ->
      f x y ;
      (iter2 [@ocaml.tailcall]) ~when_different_lengths f xs ys

let rev_map2 ~when_different_lengths f xs ys =
  let rec aux zs xs ys =
    match (xs, ys) with
    | ([], []) -> Ok zs
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
    | (x :: xs, y :: ys) ->
        let z = f x y in
        (aux [@ocaml.tailcall]) (z :: zs) xs ys
  in
  aux [] xs ys

let map2 ~when_different_lengths f xs ys =
  rev_map2 ~when_different_lengths f xs ys >|? rev

let fold_left2 ~when_different_lengths f a xs ys =
  let rec aux acc xs ys =
    match (xs, ys) with
    | ([], []) -> Ok acc
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
    | (x :: xs, y :: ys) ->
        let acc = f acc x y in
        (aux [@ocaml.tailcall]) acc xs ys
  in
  aux a xs ys

let fold_right2 ~when_different_lengths f xs ys a =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], []) -> Ok a
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
    | (x :: xs, y :: ys) -> aux xs ys >|? fun acc -> f x y acc
  in
  aux xs ys

let for_all2 ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], []) -> Ok true
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
    | (x :: xs, y :: ys) -> (
        match f x y with
        | true -> (aux [@ocaml.tailcall]) xs ys
        | false -> Ok false)
  in
  aux xs ys

let exists2 ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], []) -> Ok false
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
    | (x :: xs, y :: ys) -> (
        match f x y with
        | true -> Ok true
        | false -> (aux [@ocaml.tailcall]) xs ys)
  in
  aux xs ys

let rec mem ~equal x = function
  | [] -> false
  | y :: ys -> equal x y || mem ~equal x ys

let rec assoc ~equal k = function
  | [] -> None
  | (kk, v) :: kvs -> if equal k kk then Some v else assoc ~equal k kvs

let assoc_opt = assoc

let assq = assq_opt

let rec mem_assoc ~equal k = function
  | [] -> false
  | (kk, _) :: kvs -> equal k kk || mem_assoc ~equal k kvs

let rec remove_assoc ~equal k = function
  | [] -> []
  | ((kk, _) as kv) :: kvs ->
      if equal k kk then kvs else kv :: remove_assoc ~equal k kvs

let init ~when_negative_length l f =
  if l < 0 then Error when_negative_length
  else if l = 0 then nil_e
  else Ok (Legacy.init l f)

let init_e ~when_negative_length l f =
  let rec aux acc i =
    if i >= l then Ok (rev acc)
    else f i >>? fun v -> (aux [@ocaml.tailcall]) (v :: acc) (i + 1)
  in
  if l < 0 then Error when_negative_length
  else if l = 0 then nil_e
  else aux [] 0

let init_s ~when_negative_length l f =
  let rec aux acc i =
    if i >= l then Lwt.return (Ok (rev acc))
    else f i >>= fun v -> (aux [@ocaml.tailcall]) (v :: acc) (i + 1)
  in
  if l < 0 then Lwt.return (Error when_negative_length)
  else if l = 0 then nil_es
  else Lwt.apply f 0 >>= fun v -> aux [v] 1

let init_es ~when_negative_length l f =
  let rec aux acc i =
    if i >= l then Lwt.return (Ok (rev acc))
    else f i >>=? fun v -> (aux [@ocaml.tailcall]) (v :: acc) (i + 1)
  in
  if l < 0 then Lwt.return (Error when_negative_length)
  else if l = 0 then nil_es
  else Lwt.apply f 0 >>=? fun v -> aux [v] 1

let init_ep ~when_negative_length l f =
  let rec aux acc i =
    if i >= l then all_ep (rev acc)
    else (aux [@ocaml.tailcall]) (Lwt.apply f i :: acc) (i + 1)
  in
  if l < 0 then Lwt.return (Error [when_negative_length])
  else if l = 0 then nil_es
  else aux [] 0

let init_p ~when_negative_length l f =
  let rec aux acc i =
    if i >= l then all_p (rev acc) >>= fun xs -> Lwt.return (Ok xs)
    else (aux [@ocaml.tailcall]) (Lwt.apply f i :: acc) (i + 1)
  in
  if l < 0 then Lwt.return (Error when_negative_length)
  else if l = 0 then nil_es
  else aux [] 0

let rec find_e f = function
  | [] -> none_e
  | x :: xs -> (
      f x >>? function
      | true -> Ok (Some x)
      | false -> (find_e [@ocaml.tailcall]) f xs)

let rec find_s f = function
  | [] -> none_s
  | x :: xs -> (
      f x >>= function
      | true -> Lwt.return (Some x)
      | false -> (find_s [@ocaml.tailcall]) f xs)

let find_s f = function
  | [] -> none_s
  | x :: xs -> (
      Lwt.apply f x >>= function
      | true -> Lwt.return (Some x)
      | false -> (find_s [@ocaml.tailcall]) f xs)

let rec find_es f = function
  | [] -> none_es
  | x :: xs -> (
      f x >>=? function
      | true -> Lwt.return (Ok (Some x))
      | false -> (find_es [@ocaml.tailcall]) f xs)

let find_es f = function
  | [] -> none_es
  | x :: xs -> (
      Lwt.apply f x >>=? function
      | true -> Lwt.return (Ok (Some x))
      | false -> (find_es [@ocaml.tailcall]) f xs)

let rev_filter f xs =
  fold_left (fun rev_xs x -> if f x then x :: rev_xs else rev_xs) [] xs

let rev_filter_e f xs =
  let rec aux acc = function
    | [] -> Ok acc
    | x :: xs -> (
        f x >>? function
        | true -> (aux [@ocaml.tailcall]) (x :: acc) xs
        | false -> (aux [@ocaml.tailcall]) acc xs)
  in
  aux [] xs

let rev_filter_some oxs =
  let rec aux xs = function
    | [] -> xs
    | Some x :: oxs -> (aux [@ocaml.tailcall]) (x :: xs) oxs
    | None :: oxs -> (aux [@ocaml.tailcall]) xs oxs
  in
  aux [] oxs

let filter_some oxs = rev_filter_some oxs |> rev

let rev_filter_ok rxs =
  let rec aux xs = function
    | [] -> xs
    | Ok x :: rxs -> (aux [@ocaml.tailcall]) (x :: xs) rxs
    | Error _ :: rxs -> (aux [@ocaml.tailcall]) xs rxs
  in
  aux [] rxs

let filter_ok rxs = rev_filter_ok rxs |> rev

let rev_filter_error rxs =
  let rec aux xs = function
    | [] -> xs
    | Error x :: rxs -> (aux [@ocaml.tailcall]) (x :: xs) rxs
    | Ok _ :: rxs -> (aux [@ocaml.tailcall]) xs rxs
  in
  aux [] rxs

let filter_error rxs = rev_filter_error rxs |> rev

let filter_e f xs = rev_filter_e f xs >|? rev

let rev_filter_s f xs =
  let rec aux acc = function
    | [] -> Lwt.return acc
    | x :: xs -> (
        f x >>= function
        | true -> (aux [@ocaml.tailcall]) (x :: acc) xs
        | false -> (aux [@ocaml.tailcall]) acc xs)
  in
  match xs with
  | [] -> Lwt.return []
  | x :: xs -> (
      Lwt.apply f x >>= function
      | true -> (aux [@ocaml.tailcall]) [x] xs
      | false -> (aux [@ocaml.tailcall]) [] xs)

let filter_s f xs = rev_filter_s f xs >|= rev

let rev_filter_es f xs =
  let rec aux acc = function
    | [] -> Lwt.return (Ok acc)
    | x :: xs -> (
        f x >>=? function
        | true -> (aux [@ocaml.tailcall]) (x :: acc) xs
        | false -> (aux [@ocaml.tailcall]) acc xs)
  in
  match xs with
  | [] -> Lwt.return (Ok [])
  | x :: xs -> (
      Lwt.apply f x >>=? function true -> aux [x] xs | false -> aux [] xs)

let filter_es f xs = rev_filter_es f xs >|=? rev

let rec iter_e f = function
  | [] -> unit_e
  | h :: t -> f h >>? fun () -> (iter_e [@ocaml.tailcall]) f t

let rec iter_s f = function
  | [] -> unit_s
  | h :: t -> f h >>= fun () -> (iter_s [@ocaml.tailcall]) f t

let iter_s f = function
  | [] -> unit_s
  | h :: t -> Lwt.apply f h >>= fun () -> (iter_s [@ocaml.tailcall]) f t

let rec iter_es f = function
  | [] -> unit_es
  | h :: t -> f h >>=? fun () -> (iter_es [@ocaml.tailcall]) f t

let iter_es f = function
  | [] -> unit_es
  | h :: t -> Lwt.apply f h >>=? fun () -> (iter_es [@ocaml.tailcall]) f t

let iter_ep f l = join_ep (rev_map (Lwt.apply f) l)

let iter_p f l = join_p (rev_map (Lwt.apply f) l)

let iteri_e f l =
  let rec aux i = function
    | [] -> unit_e
    | x :: xs -> f i x >>? fun () -> (aux [@ocaml.tailcall]) (i + 1) xs
  in
  aux 0 l

let iteri_s f l =
  let rec aux i = function
    | [] -> unit_s
    | x :: xs -> f i x >>= fun () -> (aux [@ocaml.tailcall]) (i + 1) xs
  in
  match l with
  | [] -> unit_s
  | x :: xs -> lwt_apply2 f 0 x >>= fun () -> aux 1 xs

let iteri_es f l =
  let rec aux i = function
    | [] -> unit_es
    | x :: xs -> f i x >>=? fun () -> (aux [@ocaml.tailcall]) (i + 1) xs
  in
  match l with
  | [] -> unit_es
  | x :: xs -> lwt_apply2 f 0 x >>=? fun () -> aux 1 xs

let iteri_ep f l = join_ep (mapi (lwt_apply2 f) l)

let iteri_p f l = join_p (mapi (lwt_apply2 f) l)

let rev_map_e f l =
  let rec aux ys = function
    | [] -> Ok ys
    | x :: xs -> f x >>? fun y -> (aux [@ocaml.tailcall]) (y :: ys) xs
  in
  aux [] l

let map_e f l = rev_map_e f l >|? rev

let rev_map_s f l =
  let rec aux ys = function
    | [] -> Lwt.return ys
    | x :: xs -> f x >>= fun y -> (aux [@ocaml.tailcall]) (y :: ys) xs
  in
  match l with
  | [] -> Lwt.return []
  | x :: xs -> Lwt.apply f x >>= fun y -> aux [y] xs

let map_s f l = rev_map_s f l >|= rev

let rev_map_es f l =
  let rec aux ys = function
    | [] -> return ys
    | x :: xs -> f x >>=? fun y -> (aux [@ocaml.tailcall]) (y :: ys) xs
  in
  match l with
  | [] -> return []
  | x :: xs -> Lwt.apply f x >>=? fun y -> aux [y] xs

let rev_map_ep f l = all_ep @@ rev_map (Lwt.apply f) l

let map_es f l = rev_map_es f l >|=? rev

let map_ep f l = rev_map_ep f l >|=? rev

let rev_map_p f l = all_p @@ rev_map (Lwt.apply f) l

let map_p f l = rev_map_p f l >|= rev

let rev_mapi_e f l =
  let rec aux i ys = function
    | [] -> Ok ys
    | x :: xs -> f i x >>? fun y -> (aux [@ocaml.tailcall]) (i + 1) (y :: ys) xs
  in
  aux 0 [] l

let mapi_e f l = rev_mapi_e f l >|? rev

let rev_mapi_s f l =
  let rec aux i ys = function
    | [] -> Lwt.return ys
    | x :: xs -> f i x >>= fun y -> (aux [@ocaml.tailcall]) (i + 1) (y :: ys) xs
  in
  match l with
  | [] -> Lwt.return []
  | x :: xs -> lwt_apply2 f 0 x >>= fun y -> aux 1 [y] xs

let mapi_s f l = rev_mapi_s f l >|= rev

let rev_mapi_es f l =
  let rec aux i ys = function
    | [] -> return ys
    | x :: xs ->
        f i x >>=? fun y -> (aux [@ocaml.tailcall]) (i + 1) (y :: ys) xs
  in
  match l with
  | [] -> return []
  | x :: xs -> lwt_apply2 f 0 x >>=? fun y -> aux 1 [y] xs

let mapi_es f l = rev_mapi_es f l >|=? rev

let rev_mapi f l =
  let rec aux i ys = function
    | [] -> ys
    | x :: xs -> (aux [@ocaml.tailcall]) (i + 1) (f i x :: ys) xs
  in
  aux 0 [] l

let rev_mapi_p f l = all_p @@ rev_mapi f l

let rev_mapi_ep f l = all_ep @@ rev_mapi f l

let mapi_p f l = rev_mapi_p f l >|= rev

let mapi_ep f l = rev_mapi_ep f l >|=? rev

let rec fold_left_e f acc = function
  | [] -> Ok acc
  | x :: xs -> f acc x >>? fun acc -> (fold_left_e [@ocaml.tailcall]) f acc xs

let rec fold_left_s f acc = function
  | [] -> Lwt.return acc
  | x :: xs -> f acc x >>= fun acc -> (fold_left_s [@ocaml.tailcall]) f acc xs

let fold_left_s f acc = function
  | [] -> Lwt.return acc
  | x :: xs -> lwt_apply2 f acc x >>= fun acc -> fold_left_s f acc xs

let rec fold_left_es f acc = function
  | [] -> return acc
  | x :: xs -> f acc x >>=? fun acc -> (fold_left_es [@ocaml.tailcall]) f acc xs

let fold_left_es f acc = function
  | [] -> return acc
  | x :: xs -> lwt_apply2 f acc x >>=? fun acc -> fold_left_es f acc xs

let filter_p f l =
  rev_map_p (fun x -> f x >|= fun b -> if b then Some x else None) l
  >|= rev_filter_some

let filter_ep f l =
  rev_map_ep (fun x -> f x >|=? fun b -> if b then Some x else None) l
  >|=? rev_filter_some

let rev_filter_map f l =
  fold_left
    (fun acc x -> match f x with None -> acc | Some y -> y :: acc)
    []
    l

let filter_map f l = rev_filter_map f l |> rev

let rev_filter_map_e f l =
  fold_left_e
    (fun acc x -> f x >|? function None -> acc | Some y -> y :: acc)
    []
    l

let filter_map_e f l = rev_filter_map_e f l >|? rev

let rev_filter_map_s f l =
  fold_left_s
    (fun acc x -> f x >|= function None -> acc | Some y -> y :: acc)
    []
    l

let filter_map_s f l = rev_filter_map_s f l >|= rev

let rev_filter_map_es f l =
  fold_left_es
    (fun acc x -> f x >|=? function None -> acc | Some y -> y :: acc)
    []
    l

let filter_map_es f l = rev_filter_map_es f l >|=? rev

let filter_map_ep f l = rev_map_ep f l >|=? rev_filter_some

let filter_map_p f l = rev_map_p f l >|= rev_filter_some

let rec fold_right_e f l acc =
  match l with
  | [] -> Ok acc
  | x :: xs -> fold_right_e f xs acc >>? fun acc -> f x acc

let rec fold_right_s f l acc =
  match l with
  | [] -> Lwt.return acc
  | x :: xs -> fold_right_s f xs acc >>= fun acc -> f x acc

let rec fold_right_es f l acc =
  match l with
  | [] -> return acc
  | x :: xs -> fold_right_es f xs acc >>=? fun acc -> f x acc

let rev_map2_e ~when_different_lengths f xs ys =
  let rec aux zs xs ys =
    match (xs, ys) with
    | ([], []) -> Ok zs
    | (x :: xs, y :: ys) ->
        f x y >>? fun z -> (aux [@ocaml.tailcall]) (z :: zs) xs ys
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
  in
  aux [] xs ys

let rev_map2_s ~when_different_lengths f xs ys =
  let rec aux zs xs ys =
    match (xs, ys) with
    | ([], []) -> Lwt.return (Ok zs)
    | (x :: xs, y :: ys) ->
        f x y >>= fun z -> (aux [@ocaml.tailcall]) (z :: zs) xs ys
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  in
  match (xs, ys) with
  | ([], []) -> Lwt.return (Ok [])
  | (x :: xs, y :: ys) -> lwt_apply2 f x y >>= fun z -> aux [z] xs ys
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths

let rev_map2_es ~when_different_lengths f xs ys =
  let rec aux zs xs ys =
    match (xs, ys) with
    | ([], []) -> Lwt.return (Ok zs)
    | (x :: xs, y :: ys) ->
        f x y >>=? fun z -> (aux [@ocaml.tailcall]) (z :: zs) xs ys
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  in
  match (xs, ys) with
  | ([], []) -> Lwt.return (Ok [])
  | (x :: xs, y :: ys) -> lwt_apply2 f x y >>=? fun z -> aux [z] xs ys
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths

let map2_e ~when_different_lengths f xs ys =
  rev_map2_e ~when_different_lengths f xs ys >|? rev

let map2_s ~when_different_lengths f xs ys =
  rev_map2_s ~when_different_lengths f xs ys >|=? rev

let map2_es ~when_different_lengths f xs ys =
  rev_map2_es ~when_different_lengths f xs ys >|=? rev

let iter2_e ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], []) -> unit_e
    | (x :: xs, y :: ys) -> f x y >>? fun () -> (aux [@ocaml.tailcall]) xs ys
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
  in
  aux xs ys

let iter2_s ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], []) -> Lwt.return (Ok ())
    | (x :: xs, y :: ys) -> f x y >>= fun () -> (aux [@ocaml.tailcall]) xs ys
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  in
  match (xs, ys) with
  | ([], []) -> Lwt.return (Ok ())
  | (x :: xs, y :: ys) -> lwt_apply2 f x y >>= fun () -> aux xs ys
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths

let iter2_es ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], []) -> Monad.unit_es
    | (x :: xs, y :: ys) -> f x y >>=? fun () -> (aux [@ocaml.tailcall]) xs ys
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  in
  match (xs, ys) with
  | ([], []) -> Monad.unit_es
  | (x :: xs, y :: ys) -> lwt_apply2 f x y >>=? fun () -> aux xs ys
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths

let fold_left2_e ~when_different_lengths f init xs ys =
  let rec aux acc xs ys =
    match (xs, ys) with
    | ([], []) -> Ok acc
    | (x :: xs, y :: ys) ->
        f acc x y >>? fun acc -> (aux [@ocaml.tailcall]) acc xs ys
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
  in
  aux init xs ys

let fold_left2_s ~when_different_lengths f init xs ys =
  let rec aux acc xs ys =
    match (xs, ys) with
    | ([], []) -> Lwt.return (Ok acc)
    | (x :: xs, y :: ys) ->
        f acc x y >>= fun acc -> (aux [@ocaml.tailcall]) acc xs ys
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  in
  match (xs, ys) with
  | ([], []) -> Lwt.return (Ok init)
  | (x :: xs, y :: ys) -> lwt_apply3 f init x y >>= fun acc -> aux acc xs ys
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths

let fold_left2_es ~when_different_lengths f init xs ys =
  let rec aux acc xs ys =
    match (xs, ys) with
    | ([], []) -> Lwt.return (Ok acc)
    | (x :: xs, y :: ys) ->
        f acc x y >>=? fun acc -> (aux [@ocaml.tailcall]) acc xs ys
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  in
  match (xs, ys) with
  | ([], []) -> Lwt.return (Ok init)
  | (x :: xs, y :: ys) ->
      lwt_apply3 f init x y >>=? fun acc -> (aux [@ocaml.tailcall]) acc xs ys
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths

let fold_right2_e ~when_different_lengths f xs ys init =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], []) -> Ok init
    | (x :: xs, y :: ys) -> aux xs ys >>? fun acc -> f x y acc
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
  in
  aux xs ys

let fold_right2_s ~when_different_lengths f xs ys init =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
    | ([], []) -> Lwt.return (Ok init)
    | (x :: xs, y :: ys) ->
        (* We could use a specific operator for that. It'd need the following type
           ('a, 'err) result Lwt.t -> ('a -> 'b Lwt.t) -> ('b, 'err) result Lwt.t
        *)
        aux xs ys >>=? fun acc -> f x y acc >|= ok
  in
  aux xs ys

let fold_right2_es ~when_different_lengths f xs ys init =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
    | ([], []) -> Lwt.return (Ok init)
    | (x :: xs, y :: ys) -> aux xs ys >>=? fun acc -> f x y acc
  in
  aux xs ys

let rec for_all_e f = function
  | [] -> true_e
  | x :: xs -> (
      f x >>? function
      | true -> (for_all_e [@ocaml.tailcall]) f xs
      | false -> false_e)

let rec for_all_s f = function
  | [] -> true_s
  | x :: xs -> (
      f x >>= function
      | true -> (for_all_s [@ocaml.tailcall]) f xs
      | false -> false_s)

let for_all_s f = function
  | [] -> true_s
  | x :: xs -> (
      Lwt.apply f x >>= function
      | true -> (for_all_s [@ocaml.tailcall]) f xs
      | false -> false_s)

let rec for_all_es f = function
  | [] -> true_es
  | x :: xs -> (
      f x >>=? function
      | true -> (for_all_es [@ocaml.tailcall]) f xs
      | false -> false_es)

let for_all_es f = function
  | [] -> true_es
  | x :: xs -> (
      Lwt.apply f x >>=? function
      | true -> (for_all_es [@ocaml.tailcall]) f xs
      | false -> false_es)

let for_all_ep f l = rev_map_ep f l >|=? for_all Fun.id

let for_all_p f l = rev_map_p f l >|= for_all Fun.id

let rec exists_e f = function
  | [] -> false_e
  | x :: xs -> (
      f x >>? function
      | false -> (exists_e [@ocaml.tailcall]) f xs
      | true -> true_e)

let rec exists_s f = function
  | [] -> false_s
  | x :: xs -> (
      f x >>= function
      | false -> (exists_s [@ocaml.tailcall]) f xs
      | true -> true_s)

let exists_s f = function
  | [] -> false_s
  | x :: xs -> (
      Lwt.apply f x >>= function false -> exists_s f xs | true -> true_s)

let rec exists_es f = function
  | [] -> false_es
  | x :: xs -> (
      f x >>=? function
      | false -> (exists_es [@ocaml.tailcall]) f xs
      | true -> true_es)

let exists_es f = function
  | [] -> false_es
  | x :: xs -> (
      Lwt.apply f x >>=? function false -> exists_es f xs | true -> true_es)

let exists_ep f l = rev_map_ep f l >|=? exists Fun.id

let exists_p f l = rev_map_p f l >|= exists Fun.id

let for_all2_e ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
    | ([], []) -> true_e
    | (x :: xs, y :: ys) -> (
        f x y >>? function
        | true -> (aux [@ocaml.tailcall]) xs ys
        | false -> false_e)
  in
  aux xs ys

let for_all2_s ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
    | ([], []) -> true_es
    | (x :: xs, y :: ys) -> (
        f x y >>= function
        | true -> (aux [@ocaml.tailcall]) xs ys
        | false -> false_es)
  in
  match (xs, ys) with
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  | ([], []) -> true_es
  | (x :: xs, y :: ys) -> (
      lwt_apply2 f x y >>= function true -> aux xs ys | false -> false_es)

let for_all2_es ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
    | ([], []) -> true_es
    | (x :: xs, y :: ys) -> (
        f x y >>=? function
        | true -> (aux [@ocaml.tailcall]) xs ys
        | false -> false_es)
  in
  match (xs, ys) with
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  | ([], []) -> true_es
  | (x :: xs, y :: ys) -> (
      lwt_apply2 f x y >>=? function true -> aux xs ys | false -> false_es)

let exists2_e ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], _ :: _) | (_ :: _, []) -> Error when_different_lengths
    | ([], []) -> false_e
    | (x :: xs, y :: ys) -> (
        f x y >>? function
        | false -> (aux [@ocaml.tailcall]) xs ys
        | true -> true_e)
  in
  aux xs ys

let exists2_s ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
    | ([], []) -> false_es
    | (x :: xs, y :: ys) -> (
        f x y >>= function
        | false -> (aux [@ocaml.tailcall]) xs ys
        | true -> true_es)
  in
  match (xs, ys) with
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  | ([], []) -> false_es
  | (x :: xs, y :: ys) -> (
      lwt_apply2 f x y >>= function false -> aux xs ys | true -> true_es)

let exists2_es ~when_different_lengths f xs ys =
  let rec aux xs ys =
    match (xs, ys) with
    | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
    | ([], []) -> false_es
    | (x :: xs, y :: ys) -> (
        f x y >>=? function
        | false -> (aux [@ocaml.tailcall]) xs ys
        | true -> true_es)
  in
  match (xs, ys) with
  | ([], _ :: _) | (_ :: _, []) -> fail when_different_lengths
  | ([], []) -> false_es
  | (x :: xs, y :: ys) -> (
      lwt_apply2 f x y >>=? function false -> aux xs ys | true -> true_es)

let rev_partition f xs =
  let rec aux trues falses = function
    | [] -> (trues, falses)
    | x :: xs ->
        if f x then (aux [@ocaml.tailcall]) (x :: trues) falses xs
        else (aux [@ocaml.tailcall]) trues (x :: falses) xs
  in
  aux [] [] xs

let partition f xs =
  rev_partition f xs |> fun (trues, falses) -> (rev trues, rev falses)

let rev_partition_result xs =
  let rec aux oks errors = function
    | [] -> (oks, errors)
    | Ok ok :: xs -> (aux [@ocaml.tailcall]) (ok :: oks) errors xs
    | Error error :: xs -> (aux [@ocaml.tailcall]) oks (error :: errors) xs
  in
  aux [] [] xs

let partition_result xs =
  let (rev_oks, rev_errors) = rev_partition_result xs in
  (rev rev_oks, rev rev_errors)

let rev_partition_e f l =
  let rec aux trues falses = function
    | [] -> Ok (trues, falses)
    | x :: xs ->
        f x >>? fun b ->
        if b then (aux [@ocaml.tailcall]) (x :: trues) falses xs
        else (aux [@ocaml.tailcall]) trues (x :: falses) xs
  in
  aux [] [] l

let partition_e f l =
  rev_partition_e f l >|? fun (trues, falses) -> (rev trues, rev falses)

let rev_partition_s f l =
  let rec aux trues falses = function
    | [] -> Lwt.return (trues, falses)
    | x :: xs ->
        f x >>= fun b ->
        if b then (aux [@ocaml.tailcall]) (x :: trues) falses xs
        else (aux [@ocaml.tailcall]) trues (x :: falses) xs
  in
  match l with
  | [] -> Lwt.return ([], [])
  | x :: xs ->
      Lwt.apply f x >>= fun b -> if b then aux [x] [] xs else aux [] [x] xs

let partition_s f l =
  rev_partition_s f l >|= fun (trues, falses) -> (rev trues, rev falses)

let rev_partition_es f l =
  let rec aux trues falses = function
    | [] -> return (trues, falses)
    | x :: xs ->
        f x >>=? fun b ->
        if b then (aux [@ocaml.tailcall]) (x :: trues) falses xs
        else (aux [@ocaml.tailcall]) trues (x :: falses) xs
  in
  match l with
  | [] -> return ([], [])
  | x :: xs ->
      Lwt.apply f x >>=? fun b -> if b then aux [x] [] xs else aux [] [x] xs

let partition_es f l =
  rev_partition_es f l >|=? fun (trues, falses) -> (rev trues, rev falses)

let partition_ep f l =
  rev_map_ep (fun x -> f x >|=? fun b -> (b, x)) l >|=? fun bxs ->
  fold_left
    (fun (trues, falses) (b, x) ->
      if b then (x :: trues, falses) else (trues, x :: falses))
    ([], [])
    bxs

let partition_p f l =
  rev_map_p (fun x -> f x >|= fun b -> (b, x)) l >|= fun bxs ->
  fold_left
    (fun (trues, falses) (b, x) ->
      if b then (x :: trues, falses) else (trues, x :: falses))
    ([], [])
    bxs

let combine ~when_different_lengths xs ys =
  map2 ~when_different_lengths (fun x y -> (x, y)) xs ys

let rev_combine ~when_different_lengths xs ys =
  rev_map2 ~when_different_lengths (fun x y -> (x, y)) xs ys

let combine_with_leftovers xs ys =
  let rec aux rev_combined xs ys =
    match (xs, ys) with
    | ([], []) -> (rev rev_combined, None)
    | ((_ :: _ as left), []) -> (rev rev_combined, Some (`Left left))
    | ([], (_ :: _ as right)) -> (rev rev_combined, Some (`Right right))
    | (x :: xs, y :: ys) ->
        (aux [@ocaml.tailcall]) ((x, y) :: rev_combined) xs ys
  in
  aux [] xs ys

let combine_drop xs ys =
  let rec aux rev_combined xs ys =
    match (xs, ys) with
    | (x :: xs, y :: ys) ->
        (aux [@ocaml.tailcall]) ((x, y) :: rev_combined) xs ys
    | ([], []) | (_ :: _, []) | ([], _ :: _) -> rev rev_combined
  in
  aux [] xs ys

let rec compare ecomp xs ys =
  match (xs, ys) with
  | ([], []) -> 0
  | ([], _ :: _) -> -1
  | (_ :: _, []) -> 1
  | (x :: xs, y :: ys) ->
      let ec = ecomp x y in
      if ec = 0 then compare ecomp xs ys else ec

let rec equal eeq xs ys =
  match (xs, ys) with
  | ([], []) -> true
  | ([], _ :: _) | (_ :: _, []) -> false
  | (x :: xs, y :: ys) -> eeq x y && equal eeq xs ys
OCaml

Innovation. Community. Security.