Source file array.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
open! Import
include Array0
type 'a t = 'a array [@@deriving_inline compare, globalize, sexp, sexp_grammar]
let compare : 'a. ('a -> 'a -> int) -> 'a t -> 'a t -> int = compare_array
let globalize : 'a. (('a[@ocaml.local]) -> 'a) -> ('a t[@ocaml.local]) -> 'a t =
fun (type a__005_)
: (((a__005_[@ocaml.local]) -> a__005_) -> (a__005_ t[@ocaml.local]) -> a__005_ t) ->
globalize_array
;;
let t_of_sexp : 'a. (Sexplib0.Sexp.t -> 'a) -> Sexplib0.Sexp.t -> 'a t = array_of_sexp
let sexp_of_t : 'a. ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.t = sexp_of_array
let t_sexp_grammar : 'a. 'a Sexplib0.Sexp_grammar.t -> 'a t Sexplib0.Sexp_grammar.t =
fun _'a_sexp_grammar -> array_sexp_grammar _'a_sexp_grammar
;;
[@@@end]
module Sorter (S : sig
type 'a t
val get : 'a t -> int -> 'a
val set : 'a t -> int -> 'a -> unit
val length : 'a t -> int
end) =
struct
include S
let swap arr i j =
let tmp = get arr i in
set arr i (get arr j);
set arr j tmp
;;
module type Sort = sig
val sort
: 'a t
-> compare:(('a -> 'a -> int)[@local])
-> left:int
-> right:int
-> unit
end
module Insertion_sort : Sort = struct
let rec insert_loop arr ~left ~compare i v =
let i_next = i - 1 in
if i_next >= left && compare (get arr i_next) v > 0
then (
set arr i (get arr i_next);
insert_loop arr ~left ~compare i_next v)
else i
;;
let sort arr ~compare ~left ~right =
for pos = left + 1 to right do
let v = get arr pos in
let final_pos = insert_loop arr ~left ~compare pos v in
set arr final_pos v
done
;;
end
module Heap_sort : Sort = struct
let rec heapify arr ~compare root ~left ~right =
let relative_root = root - left in
let left_child = (2 * relative_root) + left + 1 in
let right_child = (2 * relative_root) + left + 2 in
let largest =
if left_child <= right && compare (get arr left_child) (get arr root) > 0
then left_child
else root
in
let largest =
if right_child <= right && compare (get arr right_child) (get arr largest) > 0
then right_child
else largest
in
if largest <> root
then (
swap arr root largest;
heapify arr ~compare largest ~left ~right)
;;
let build_heap arr ~compare ~left ~right =
for i = (left + right) / 2 downto left do
heapify arr ~compare i ~left ~right
done
;;
let sort arr ~compare ~left ~right =
build_heap arr ~compare ~left ~right;
for i = right downto left + 1 do
swap arr left i;
heapify arr ~compare left ~left ~right:(i - 1)
done
;;
end
module Intro_sort : sig
include Sort
val five_element_sort
: 'a t
-> compare:(('a -> 'a -> int)[@local])
-> int
-> int
-> int
-> int
-> int
-> unit
end = struct
let five_element_sort arr ~compare:((compare : _ -> _ -> _) [@local]) m1 m2 m3 m4 m5 =
let compare_and_swap i j =
if compare (get arr i) (get arr j) > 0 then swap arr i j
in
compare_and_swap m1 m2;
compare_and_swap m4 m5;
compare_and_swap m1 m3;
compare_and_swap m2 m3;
compare_and_swap m1 m4;
compare_and_swap m3 m4;
compare_and_swap m2 m5;
compare_and_swap m2 m3;
compare_and_swap m4 m5 [@nontail]
;;
let choose_pivots arr ~compare:((compare : _ -> _ -> _) [@local]) ~left ~right =
let sixth = (right - left) / 6 in
let m1 = left + sixth in
let m2 = m1 + sixth in
let m3 = m2 + sixth in
let m4 = m3 + sixth in
let m5 = m4 + sixth in
five_element_sort arr ~compare m1 m2 m3 m4 m5;
let m2_val = get arr m2 in
let m3_val = get arr m3 in
let m4_val = get arr m4 in
if compare m2_val m3_val = 0
then m2_val, m3_val, true
else if compare m3_val m4_val = 0
then m3_val, m4_val, true
else m2_val, m4_val, false
;;
let dual_pivot_partition arr ~compare:((compare : _ -> _ -> _) [@local]) ~left ~right =
let pivot1, pivot2, pivots_equal = choose_pivots arr ~compare ~left ~right in
let rec loop l p r =
let pv = get arr p in
if compare pv pivot1 < 0
then (
swap arr p l;
cont (l + 1) (p + 1) r)
else if compare pv pivot2 > 0
then (
let rec scan_backwards r =
if r > p && compare (get arr r) pivot2 > 0 then scan_backwards (r - 1) else r
in
let r = scan_backwards r in
swap arr r p;
cont l p (r - 1))
else cont l (p + 1) r
and cont l p r = if p > r then l, r else loop l p r in
let l, r = cont left left right in
l, r, pivots_equal
;;
let rec intro_sort arr ~max_depth ~compare ~left ~right =
let len = right - left + 1 in
if len <= 32
then Insertion_sort.sort arr ~compare ~left ~right
else if max_depth < 0
then Heap_sort.sort arr ~compare ~left ~right
else (
let max_depth = max_depth - 1 in
let l, r, middle_sorted = dual_pivot_partition arr ~compare ~left ~right in
intro_sort arr ~max_depth ~compare ~left ~right:(l - 1);
if not middle_sorted then intro_sort arr ~max_depth ~compare ~left:l ~right:r;
intro_sort arr ~max_depth ~compare ~left:(r + 1) ~right)
;;
let sort arr ~compare ~left ~right =
let heap_sort_switch_depth =
32
in
intro_sort arr ~max_depth:heap_sort_switch_depth ~compare ~left ~right
;;
end
let sort ?pos ?len arr ~compare:((compare : _ -> _ -> _) [@local]) =
let pos, len =
Ordered_collection_common.get_pos_len_exn () ?pos ?len ~total_length:(length arr)
in
Intro_sort.sort arr ~compare ~left:pos ~right:(pos + len - 1)
;;
end
[@@inline]
module Sort = Sorter (struct
type nonrec 'a t = 'a t
let get = unsafe_get
let set = unsafe_set
let length = length
end)
let sort = Sort.sort
let of_array t = t
let to_array t = t
let is_empty t = length t = 0
let is_sorted t ~compare =
let i = ref (length t - 1) in
let result = ref true in
while !i > 0 && !result do
let elt_i = unsafe_get t !i in
let elt_i_minus_1 = unsafe_get t (!i - 1) in
if compare elt_i_minus_1 elt_i > 0 then result := false;
decr i
done;
!result
;;
let is_sorted_strictly t ~compare =
let i = ref (length t - 1) in
let result = ref true in
while !i > 0 && !result do
let elt_i = unsafe_get t !i in
let elt_i_minus_1 = unsafe_get t (!i - 1) in
if compare elt_i_minus_1 elt_i >= 0 then result := false;
decr i
done;
!result
;;
let merge a1 a2 ~compare =
let l1 = Array.length a1 in
let l2 = Array.length a2 in
if l1 = 0
then copy a2
else if l2 = 0
then copy a1
else if compare (unsafe_get a2 0) (unsafe_get a1 (l1 - 1)) >= 0
then append a1 a2
else if compare (unsafe_get a1 0) (unsafe_get a2 (l2 - 1)) > 0
then append a2 a1
else (
let len = l1 + l2 in
let merged = create ~len (unsafe_get a1 0) in
let a1_index = ref 0 in
let a2_index = ref 0 in
for i = 0 to len - 1 do
let use_a1 =
if l1 = !a1_index
then false
else if l2 = !a2_index
then true
else compare (unsafe_get a1 !a1_index) (unsafe_get a2 !a2_index) <= 0
in
if use_a1
then (
unsafe_set merged i (unsafe_get a1 !a1_index);
a1_index := !a1_index + 1)
else (
unsafe_set merged i (unsafe_get a2 !a2_index);
a2_index := !a2_index + 1)
done;
merged)
;;
let copy_matrix = map ~f:copy
let folding_map t ~init ~f =
let acc = ref init in
map t ~f:(fun x ->
let new_acc, y = f !acc x in
acc := new_acc;
y) [@nontail]
;;
let fold_map t ~init ~f =
let acc = ref init in
let result =
map t ~f:(fun x ->
let new_acc, y = f !acc x in
acc := new_acc;
y)
in
!acc, result
;;
let fold_result t ~init ~f = Container.fold_result ~fold ~init ~f t
let fold_until t ~init ~f ~finish = Container.fold_until ~fold ~init ~f t ~finish
let count t ~f = Container.count ~fold t ~f
let sum m t ~f = Container.sum ~fold m t ~f
let min_elt t ~compare = Container.min_elt ~fold t ~compare
let max_elt t ~compare = Container.max_elt ~fold t ~compare
let foldi t ~init ~f =
let acc = ref init in
for i = 0 to length t - 1 do
acc := f i !acc (unsafe_get t i)
done;
!acc
;;
let folding_mapi t ~init ~f =
let acc = ref init in
mapi t ~f:(fun i x ->
let new_acc, y = f i !acc x in
acc := new_acc;
y) [@nontail]
;;
let fold_mapi t ~init ~f =
let acc = ref init in
let result =
mapi t ~f:(fun i x ->
let new_acc, y = f i !acc x in
acc := new_acc;
y)
in
!acc, result
;;
let counti t ~f =
foldi t ~init:0 ~f:(fun idx count a -> if f idx a then count + 1 else count) [@nontail]
;;
let concat_map t ~f = concat (to_list (map ~f t))
let concat_mapi t ~f = concat (to_list (mapi ~f t))
let rev_inplace t =
let i = ref 0 in
let j = ref (length t - 1) in
while !i < !j do
swap t !i !j;
incr i;
decr j
done
;;
let rev t =
let t = copy t in
rev_inplace t;
t
;;
let of_list_rev l =
match l with
| [] -> [||]
| a :: l ->
let len = 1 + List.length l in
let t = create ~len a in
let r = ref l in
for i = len - 2 downto 0 do
match !r with
| [] -> assert false
| a :: l ->
t.(i) <- a;
r := l
done;
t
;;
let of_list_map xs ~f =
match xs with
| [] -> [||]
| hd :: tl ->
let a = create ~len:(1 + List.length tl) (f hd) in
let rec fill i = function
| [] -> a
| hd :: tl ->
unsafe_set a i (f hd);
fill (i + 1) tl
in
fill 1 tl [@nontail]
;;
let of_list_mapi xs ~f =
match xs with
| [] -> [||]
| hd :: tl ->
let a = create ~len:(1 + List.length tl) (f 0 hd) in
let rec fill a i = function
| [] -> a
| hd :: tl ->
unsafe_set a i (f i hd);
fill a (i + 1) tl
in
fill a 1 tl [@nontail]
;;
let of_list_rev_map xs ~f =
let t = of_list_map xs ~f in
rev_inplace t;
t
;;
let of_list_rev_mapi xs ~f =
let t = of_list_mapi xs ~f in
rev_inplace t;
t
;;
let filter_mapi t ~f =
let r = ref [||] in
let k = ref 0 in
for i = 0 to length t - 1 do
match f i (unsafe_get t i) with
| None -> ()
| Some a ->
if !k = 0 then r := create ~len:(length t) a;
unsafe_set !r !k a;
incr k
done;
if !k = length t then !r else if !k > 0 then sub ~pos:0 ~len:!k !r else [||]
;;
let filter_map t ~f = filter_mapi t ~f:(fun _i a -> f a) [@nontail]
let filter_opt t = filter_map t ~f:Fn.id
let raise_length_mismatch name n1 n2 =
invalid_argf "length mismatch in %s: %d <> %d" name n1 n2 ()
[@@cold] [@@inline never] [@@local never] [@@specialise never]
;;
let check_length2_exn name t1 t2 =
let n1 = length t1 in
let n2 = length t2 in
if n1 <> n2 then raise_length_mismatch name n1 n2
;;
let iter2_exn t1 t2 ~f =
check_length2_exn "Array.iter2_exn" t1 t2;
iteri t1 ~f:(fun i x1 -> f x1 (unsafe_get t2 i)) [@nontail]
;;
let map2_exn t1 t2 ~f =
check_length2_exn "Array.map2_exn" t1 t2;
init (length t1) ~f:(fun i -> f (unsafe_get t1 i) (unsafe_get t2 i)) [@nontail]
;;
let fold2_exn t1 t2 ~init ~f =
check_length2_exn "Array.fold2_exn" t1 t2;
foldi t1 ~init ~f:(fun i ac x -> f ac x (unsafe_get t2 i)) [@nontail]
;;
let filter t ~f = filter_map t ~f:(fun x -> if f x then Some x else None) [@nontail]
let filteri t ~f = filter_mapi t ~f:(fun i x -> if f i x then Some x else None) [@nontail]
let exists t ~f =
let i = ref (length t - 1) in
let result = ref false in
while !i >= 0 && not !result do
if f (unsafe_get t !i) then result := true else decr i
done;
!result
;;
let existsi t ~f =
let i = ref (length t - 1) in
let result = ref false in
while !i >= 0 && not !result do
if f !i (unsafe_get t !i) then result := true else decr i
done;
!result
;;
let mem t a ~equal = exists t ~f:(equal a) [@nontail]
let for_all t ~f =
let i = ref (length t - 1) in
let result = ref true in
while !i >= 0 && !result do
if not (f (unsafe_get t !i)) then result := false else decr i
done;
!result
;;
let for_alli t ~f =
let length = length t in
let i = ref (length - 1) in
let result = ref true in
while !i >= 0 && !result do
if not (f !i (unsafe_get t !i)) then result := false else decr i
done;
!result
;;
let exists2_exn t1 t2 ~f =
check_length2_exn "Array.exists2_exn" t1 t2;
let i = ref (length t1 - 1) in
let result = ref false in
while !i >= 0 && not !result do
if f (unsafe_get t1 !i) (unsafe_get t2 !i) then result := true else decr i
done;
!result
;;
let for_all2_exn t1 t2 ~f =
check_length2_exn "Array.for_all2_exn" t1 t2;
let i = ref (length t1 - 1) in
let result = ref true in
while !i >= 0 && !result do
if not (f (unsafe_get t1 !i) (unsafe_get t2 !i)) then result := false else decr i
done;
!result
;;
let equal equal t1 t2 = length t1 = length t2 && for_all2_exn t1 t2 ~f:equal
let map_inplace t ~f =
for i = 0 to length t - 1 do
unsafe_set t i (f (unsafe_get t i))
done
;;
let[@inline always] findi_internal t ~f ~if_found ~if_not_found =
let length = length t in
if length = 0
then if_not_found ()
else (
let i = ref 0 in
let found = ref false in
let value_found = ref (unsafe_get t 0) in
while (not !found) && !i < length do
let value = unsafe_get t !i in
if f !i value
then (
value_found := value;
found := true)
else incr i
done;
if !found then if_found ~i:!i ~value:!value_found else if_not_found ())
;;
let findi t ~f =
findi_internal
t
~f
~if_found:(fun ~i ~value -> Some (i, value))
~if_not_found:(fun () -> None)
;;
let findi_exn t ~f =
findi_internal
t
~f
~if_found:(fun ~i ~value -> i, value)
~if_not_found:(fun () -> raise (Not_found_s (Atom "Array.findi_exn: not found")))
;;
let find_exn t ~f =
findi_internal
t
~f:(fun _i x -> f x)
~if_found:(fun ~i:_ ~value -> value)
~if_not_found:(fun () -> raise (Not_found_s (Atom "Array.find_exn: not found")))
[@nontail]
;;
let find t ~f = Option.map (findi t ~f:(fun _i x -> f x)) ~f:(fun (_i, x) -> x)
let find_map t ~f =
let length = length t in
if length = 0
then None
else (
let i = ref 0 in
let value_found = ref None in
while Option.is_none !value_found && !i < length do
let value = unsafe_get t !i in
value_found := f value;
incr i
done;
!value_found)
;;
let find_map_exn =
let not_found = Not_found_s (Atom "Array.find_map_exn: not found") in
let find_map_exn t ~f =
match find_map t ~f with
| None -> raise not_found
| Some x -> x
in
find_map_exn
;;
let find_mapi t ~f =
let length = length t in
if length = 0
then None
else (
let i = ref 0 in
let value_found = ref None in
while Option.is_none !value_found && !i < length do
let value = unsafe_get t !i in
value_found := f !i value;
incr i
done;
!value_found)
;;
let find_mapi_exn =
let not_found = Not_found_s (Atom "Array.find_mapi_exn: not found") in
let find_mapi_exn t ~f =
match find_mapi t ~f with
| None -> raise not_found
| Some x -> x
in
find_mapi_exn
;;
let find_consecutive_duplicate t ~equal =
let n = length t in
if n <= 1
then None
else (
let result = ref None in
let i = ref 1 in
let prev = ref (unsafe_get t 0) in
while !i < n do
let cur = unsafe_get t !i in
if equal cur !prev
then (
result := Some (!prev, cur);
i := n)
else (
prev := cur;
incr i)
done;
!result)
;;
let reduce t ~f =
if length t = 0
then None
else (
let r = ref (unsafe_get t 0) in
for i = 1 to length t - 1 do
r := f !r (unsafe_get t i)
done;
Some !r)
;;
let reduce_exn t ~f =
match reduce t ~f with
| None -> invalid_arg "Array.reduce_exn"
| Some v -> v
;;
let permute = Array_permute.permute
let random_element_exn ?(random_state = Random.State.default) t =
if is_empty t
then failwith "Array.random_element_exn: empty array"
else t.(Random.State.int random_state (length t))
;;
let random_element ?(random_state = Random.State.default) t =
try Some (random_element_exn ~random_state t) with
| _ -> None
;;
let zip t1 t2 =
if length t1 <> length t2 then None else Some (map2_exn t1 t2 ~f:(fun x1 x2 -> x1, x2))
;;
let zip_exn t1 t2 =
if length t1 <> length t2
then failwith "Array.zip_exn"
else map2_exn t1 t2 ~f:(fun x1 x2 -> x1, x2)
;;
let unzip t =
let n = length t in
if n = 0
then [||], [||]
else (
let x, y = t.(0) in
let res1 = create ~len:n x in
let res2 = create ~len:n y in
for i = 1 to n - 1 do
let x, y = t.(i) in
res1.(i) <- x;
res2.(i) <- y
done;
res1, res2)
;;
let sorted_copy t ~compare =
let t1 = copy t in
sort t1 ~compare;
t1
;;
let partition_mapi t ~f =
let (both : _ Either.t t) = mapi t ~f in
let firsts =
filter_map both ~f:(function
| First x -> Some x
| Second _ -> None)
in
let seconds =
filter_map both ~f:(function
| First _ -> None
| Second x -> Some x)
in
firsts, seconds
;;
let partitioni_tf t ~f =
partition_mapi t ~f:(fun i x -> if f i x then First x else Second x) [@nontail]
;;
let partition_map t ~f = partition_mapi t ~f:(fun _ x -> f x) [@nontail]
let partition_tf t ~f = partitioni_tf t ~f:(fun _ x -> f x) [@nontail]
let last t = t.(length t - 1)
let to_sequence_mutable t =
Sequence.unfold_step ~init:0 ~f:(fun i ->
if i >= length t
then Sequence.Step.Done
else Sequence.Step.Yield { value = t.(i); state = i + 1 })
;;
let to_sequence t = to_sequence_mutable (copy t)
let cartesian_product t1 t2 =
if is_empty t1 || is_empty t2
then [||]
else (
let n1 = length t1 in
let n2 = length t2 in
let t = create ~len:(n1 * n2) (t1.(0), t2.(0)) in
let r = ref 0 in
for i1 = 0 to n1 - 1 do
for i2 = 0 to n2 - 1 do
t.(!r) <- t1.(i1), t2.(i2);
incr r
done
done;
t)
;;
let transpose tt =
if length tt = 0
then Some [||]
else (
let width = length tt in
let depth = length tt.(0) in
if exists tt ~f:(fun t -> length t <> depth)
then None
else Some (init depth ~f:(fun d -> init width ~f:(fun w -> tt.(w).(d)))))
;;
let transpose_exn tt =
match transpose tt with
| None -> invalid_arg "Array.transpose_exn"
| Some tt' -> tt'
;;
include Binary_searchable.Make1 (struct
type nonrec 'a t = 'a t
let get = get
let length = length
end)
include Blit.Make1 (struct
type nonrec 'a t = 'a t
let length = length
let create_like ~len t =
if len = 0
then [||]
else (
assert (length t > 0);
create ~len t.(0))
;;
let unsafe_blit = unsafe_blit
end)
let invariant invariant_a t = iter t ~f:invariant_a
module Private = struct
module Sort = Sort
module Sorter = Sorter
end