forked from dotnet/fsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray.fs
More file actions
1118 lines (964 loc) · 45.3 KB
/
Copy patharray.fs
File metadata and controls
1118 lines (964 loc) · 45.3 KB
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
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) Microsoft Open Technologies, Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.FSharp.Collections
open System
open System.Diagnostics
open System.Collections.Generic
open System.Diagnostics.CodeAnalysis
open Microsoft.FSharp.Core
open Microsoft.FSharp.Core.CompilerServices
open Microsoft.FSharp.Collections
open Microsoft.FSharp.Core.Operators
open Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicOperators
open Microsoft.FSharp.Core.SR
#if FX_NO_ICLONEABLE
open Microsoft.FSharp.Core.ICloneableExtensions
#else
#endif
/// Basic operations on arrays
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
[<RequireQualifiedAccess>]
module Array =
let inline checkNonNull argName arg =
match box arg with
| null -> nullArg argName
| _ -> ()
let inline indexNotFound() = raise (new System.Collections.Generic.KeyNotFoundException(SR.GetString(SR.keyNotFoundAlt)))
[<CompiledName("Length")>]
let length (array: _[]) = array.Length
[<CompiledName("Last")>]
let inline last (array : 'T[]) =
checkNonNull "array" array
if array.Length = 0 then invalidArg "array" LanguagePrimitives.ErrorStrings.InputArrayEmptyString
array.[array.Length-1]
[<CompiledName("TryLast")>]
let tryLast (array : 'T[]) =
checkNonNull "array" array
if array.Length = 0 then None
else Some array.[array.Length-1]
[<CompiledName("Initialize")>]
let inline init count f = Microsoft.FSharp.Primitives.Basics.Array.init count f
[<CompiledName("ZeroCreate")>]
let zeroCreate count =
if count < 0 then invalidArg "count" (SR.GetString(SR.inputMustBeNonNegative))
Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked count
[<CompiledName("Create")>]
let create (count:int) (x:'T) =
if count < 0 then invalidArg "count" (SR.GetString(SR.inputMustBeNonNegative))
let array = (Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked count : 'T[])
for i = 0 to Operators.Checked.(-) count 1 do // use checked arithmetic here to satisfy FxCop
array.[i] <- x
array
[<CompiledName("TryHead")>]
let tryHead (array : 'T[]) =
checkNonNull "array" array
if array.Length = 0 then None
else Some array.[0]
[<CompiledName("IsEmpty")>]
let isEmpty (array: 'T[]) =
checkNonNull "array" array
(array.Length = 0)
[<CompiledName("Tail")>]
let tail (array : 'T[]) =
checkNonNull "array" array
if array.Length = 0 then invalidArg "array" (SR.GetString(SR.notEnoughElements))
let len = array.Length - 1
Microsoft.FSharp.Primitives.Basics.Array.subUnchecked 1 len array
[<CompiledName("Empty")>]
let empty<'T> = ([| |] : 'T [])
[<CodeAnalysis.SuppressMessage("Microsoft.Naming","CA1704:IdentifiersShouldBeSpelledCorrectly")>]
[<CompiledName("CopyTo")>]
let blit (source : 'T[]) sourceIndex (target: 'T[]) targetIndex count =
checkNonNull "source" source
checkNonNull "target" target
if sourceIndex < 0 then invalidArg "sourceIndex" (SR.GetString(SR.inputMustBeNonNegative))
if count < 0 then invalidArg "count" (SR.GetString(SR.inputMustBeNonNegative))
if targetIndex < 0 then invalidArg "targetIndex" (SR.GetString(SR.inputMustBeNonNegative))
if sourceIndex + count > source.Length then invalidArg "count" (SR.GetString(SR.outOfRange))
if targetIndex + count > target.Length then invalidArg "count" (SR.GetString(SR.outOfRange))
Array.Copy(source, sourceIndex, target, targetIndex, count)
// for i = 0 to count - 1 do
// target.[targetIndex+i] <- source.[sourceIndex + i]
let rec concatAddLengths (arrs:'T[][]) i acc =
if i >= arrs.Length then acc
else concatAddLengths arrs (i+1) (acc + arrs.[i].Length)
let rec concatBlit (arrs:'T[][]) i j (tgt:'T[]) =
if i < arrs.Length then
let h = arrs.[i]
let len = h.Length
Array.Copy(h, 0, tgt, j, len)
concatBlit arrs (i+1) (j+len) tgt
let concatArrays (arrs : 'T[][]) =
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked (concatAddLengths arrs 0 0)
concatBlit arrs 0 0 res ;
res
[<CompiledName("Concat")>]
let concat (arrays: seq<'T[]>) =
checkNonNull "arrays" arrays
match arrays with
| :? ('T[][]) as ts -> ts |> concatArrays // avoid a clone, since we only read the array
| _ -> arrays |> Seq.toArray |> concatArrays
[<CompiledName("Replicate")>]
let replicate count x =
if count < 0 then invalidArg "count" (SR.GetString(SR.inputMustBeNonNegative))
let arr = (Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked count : 'T array)
for i = 0 to count - 1 do
arr.[i] <- x
arr
[<CompiledName("Collect")>]
let collect (f : 'T -> 'U[]) (array : 'T[]) : 'U[]=
checkNonNull "array" array
let len = array.Length
let result = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked<'U[]> len
for i = 0 to len - 1 do
result.[i] <- f array.[i]
concatArrays result
[<CompiledName("SplitAt")>]
let splitAt index (array:'T[]) =
checkNonNull "array" array
if index < 0 then invalidArg "index" (SR.GetString(SR.inputMustBeNonNegative))
if array.Length < index then raise <| System.InvalidOperationException (SR.GetString(SR.notEnoughElements))
if index = 0 then
let right = Microsoft.FSharp.Primitives.Basics.Array.subUnchecked 0 array.Length array
[||],right
elif index = array.Length then
let left = Microsoft.FSharp.Primitives.Basics.Array.subUnchecked 0 array.Length array
left,[||] else
let res1 = Microsoft.FSharp.Primitives.Basics.Array.subUnchecked 0 index array
let res2 = Microsoft.FSharp.Primitives.Basics.Array.subUnchecked index (array.Length-index) array
res1,res2
[<CompiledName("Take")>]
let take count (array : 'T[]) =
checkNonNull "array" array
if count < 0 then invalidArg "count" (SR.GetString(SR.inputMustBeNonNegative))
if count = 0 then empty else
if count > array.Length then
raise <| System.InvalidOperationException (SR.GetString(SR.notEnoughElements))
Microsoft.FSharp.Primitives.Basics.Array.subUnchecked 0 count array
[<CompiledName("TakeWhile")>]
let takeWhile predicate (array: 'T[]) =
checkNonNull "array" array
if array.Length = 0 then empty else
let mutable count = 0
while count < array.Length && predicate array.[count] do
count <- count + 1
Microsoft.FSharp.Primitives.Basics.Array.subUnchecked 0 count array
[<CompiledName("CountBy")>]
let countBy projection (array:'T[]) =
checkNonNull "array" array
let dict = new Dictionary<Microsoft.FSharp.Core.CompilerServices.RuntimeHelpers.StructBox<'Key>,int>(Microsoft.FSharp.Core.CompilerServices.RuntimeHelpers.StructBox<'Key>.Comparer)
// Build the groupings
for v in array do
let key = Microsoft.FSharp.Core.CompilerServices.RuntimeHelpers.StructBox (projection v)
let mutable prev = Unchecked.defaultof<_>
if dict.TryGetValue(key, &prev) then dict.[key] <- prev + 1 else dict.[key] <- 1
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked dict.Count
let mutable i = 0
for group in dict do
res.[i] <- group.Key.Value, group.Value
i <- i + 1
res
[<CompiledName("Append")>]
let append (array1:'T[]) (array2:'T[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let n1 = array1.Length
let n2 = array2.Length
let res : 'T[] = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked (n1 + n2)
Array.Copy(array1, 0, res, 0, n1)
Array.Copy(array2, 0, res, n1, n2)
res
[<CompiledName("Head")>]
let head (array : 'T[]) =
checkNonNull "array" array
if array.Length = 0 then invalidArg "array" LanguagePrimitives.ErrorStrings.InputArrayEmptyString else array.[0]
[<CompiledName("Copy")>]
let copy (array: 'T[]) =
checkNonNull "array" array
(array.Clone() :?> 'T[]) // this is marginally faster
//let len = array.Length
//let res = zeroCreate len
//for i = 0 to len - 1 do
// res.[i] <- array.[i]
//res
[<CompiledName("ToList")>]
let toList array =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.List.ofArray array
[<CompiledName("OfList")>]
let ofList list =
checkNonNull "list" list
Microsoft.FSharp.Primitives.Basics.List.toArray list
[<CompiledName("Indexed")>]
let indexed (array: 'T[]) =
checkNonNull "array" array
let len = array.Length
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len
for i = 0 to len - 1 do
res.[i] <- (i,array.[i])
res
[<CompiledName("Iterate")>]
let inline iter f (array: 'T[]) =
checkNonNull "array" array
let len = array.Length
for i = 0 to len - 1 do
f array.[i]
[<CompiledName("Distinct")>]
let distinct (array:'T[]) =
checkNonNull "array" array
let temp = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked array.Length
let mutable i = 0
let hashSet = HashSet<'T>(HashIdentity.Structural<'T>)
for v in array do
if hashSet.Add(v) then
temp.[i] <- v
i <- i + 1
Microsoft.FSharp.Primitives.Basics.Array.subUnchecked 0 i temp
[<CompiledName("Map")>]
let inline map (f: 'T -> 'U) (array:'T[]) =
checkNonNull "array" array
let len = array.Length
let res = (Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len : 'U[])
for i = 0 to len - 1 do
res.[i] <- f array.[i]
res
[<CompiledName("Iterate2")>]
let iter2 f (array1: 'T[]) (array2: 'U[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let len1 = array1.Length
if len1 <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths));
for i = 0 to len1 - 1 do
f.Invoke(array1.[i], array2.[i])
[<CompiledName("DistinctBy")>]
let distinctBy keyf (array:'T[]) =
checkNonNull "array" array
let temp = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked array.Length
let mutable i = 0
let hashSet = HashSet<_>(HashIdentity.Structural<_>)
for v in array do
if hashSet.Add(keyf v) then
temp.[i] <- v
i <- i + 1
Microsoft.FSharp.Primitives.Basics.Array.subUnchecked 0 i temp
[<CompiledName("Map2")>]
let map2 f (array1: 'T[]) (array2: 'U[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let len1 = array1.Length
if len1 <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths));
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len1
for i = 0 to len1 - 1 do
res.[i] <- f.Invoke(array1.[i], array2.[i])
res
[<CompiledName("Map3")>]
let map3 f (array1: 'T1[]) (array2: 'T2[]) (array3: 'T3[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
checkNonNull "array3" array3
let f = OptimizedClosures.FSharpFunc<_,_,_,_>.Adapt(f)
let len1 = array1.Length
if not (len1 = array2.Length && len1 = array3.Length) then invalidArg "" (SR.GetString(SR.arraysHadDifferentLengths))
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len1
for i = 0 to len1 - 1 do
res.[i] <- f.Invoke(array1.[i], array2.[i], array3.[i])
res
[<CompiledName("MapIndexed2")>]
let mapi2 f (array1: 'T[]) (array2: 'U[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let f = OptimizedClosures.FSharpFunc<_,_,_,_>.Adapt(f)
let len1 = array1.Length
if len1 <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths));
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len1
for i = 0 to len1 - 1 do
res.[i] <- f.Invoke(i,array1.[i], array2.[i])
res
[<CompiledName("IterateIndexed")>]
let iteri f (array:'T[]) =
checkNonNull "array" array
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let len = array.Length
for i = 0 to len - 1 do
f.Invoke(i, array.[i])
[<CompiledName("IterateIndexed2")>]
let iteri2 f (array1: 'T[]) (array2: 'U[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let f = OptimizedClosures.FSharpFunc<_,_,_,_>.Adapt(f)
let len1 = array1.Length
if len1 <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths));
for i = 0 to len1 - 1 do
f.Invoke(i,array1.[i], array2.[i])
[<CompiledName("MapIndexed")>]
let mapi (f : int -> 'T -> 'U) (array: 'T[]) =
checkNonNull "array" array
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let len = array.Length
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len
for i = 0 to len - 1 do
res.[i] <- f.Invoke(i,array.[i])
res
[<CompiledName("MapFold")>]
let mapFold<'T,'State,'Result> (f : 'State -> 'T -> 'Result * 'State) acc array =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.mapFold f acc array
[<CompiledName("MapFoldBack")>]
let mapFoldBack<'T,'State,'Result> (f : 'T -> 'State -> 'Result * 'State) array acc =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.mapFoldBack f array acc
[<CompiledName("Exists")>]
let exists (f: 'T -> bool) (array:'T[]) =
checkNonNull "array" array
let len = array.Length
let rec loop i = i < len && (f array.[i] || loop (i+1))
loop 0
[<CompiledName("Contains")>]
let inline contains e (array:'T[]) =
checkNonNull "array" array
let mutable state = false
let mutable i = 0
while (not state && i < array.Length) do
state <- e = array.[i]
i <- i + 1
state
[<CompiledName("Exists2")>]
let exists2 f (array1: _[]) (array2: _[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let len1 = array1.Length
if len1 <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths))
let rec loop i = i < len1 && (f.Invoke(array1.[i], array2.[i]) || loop (i+1))
loop 0
[<CompiledName("ForAll")>]
let forall (f: 'T -> bool) (array:'T[]) =
checkNonNull "array" array
let len = array.Length
let rec loop i = i >= len || (f array.[i] && loop (i+1))
loop 0
[<CompiledName("ForAll2")>]
let forall2 f (array1: _[]) (array2: _[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let len1 = array1.Length
if len1 <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths))
let rec loop i = i >= len1 || (f.Invoke(array1.[i], array2.[i]) && loop (i+1))
loop 0
[<CompiledName("GroupBy")>]
let groupBy keyf (array: 'T[]) =
checkNonNull "array" array
let dict = new Dictionary<RuntimeHelpers.StructBox<'Key>,ResizeArray<'T>>(RuntimeHelpers.StructBox<'Key>.Comparer)
// Build the groupings
for i = 0 to (array.Length - 1) do
let v = array.[i]
let key = RuntimeHelpers.StructBox (keyf v)
let ok, prev = dict.TryGetValue(key)
if ok then
prev.Add(v)
else
let prev = new ResizeArray<'T>(1)
dict.[key] <- prev
prev.Add(v)
// Return the array-of-arrays.
let result = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked dict.Count
let mutable i = 0
for group in dict do
result.[i] <- group.Key.Value, group.Value.ToArray()
i <- i + 1
result
[<CompiledName("Pick")>]
let pick f (array: _[]) =
checkNonNull "array" array
let rec loop i =
if i >= array.Length then
indexNotFound()
else
match f array.[i] with
| None -> loop(i+1)
| Some res -> res
loop 0
[<CompiledName("TryPick")>]
let tryPick f (array: _[]) =
checkNonNull "array" array
let rec loop i =
if i >= array.Length then None else
match f array.[i] with
| None -> loop(i+1)
| res -> res
loop 0
[<CompiledName("Choose")>]
let choose f (array: _[]) =
checkNonNull "array" array
let res = new System.Collections.Generic.List<_>() // ResizeArray
for i = 0 to array.Length - 1 do
match f array.[i] with
| None -> ()
| Some b -> res.Add(b)
res.ToArray()
[<CompiledName("Filter")>]
let filter f (array: _[]) =
checkNonNull "array" array
let res = new System.Collections.Generic.List<_>() // ResizeArray
for i = 0 to array.Length - 1 do
let x = array.[i]
if f x then res.Add(x)
res.ToArray()
[<CompiledName("Where")>]
let where f (array: _[]) = filter f array
[<CompiledName("Except")>]
let except (itemsToExclude: seq<_>) (array:_[]) =
checkNonNull "itemsToExclude" itemsToExclude
checkNonNull "array" array
if array.Length = 0 then
array
else
let cached = HashSet(itemsToExclude, HashIdentity.Structural)
array |> filter cached.Add
[<CompiledName("Partition")>]
let partition f (array: _[]) =
checkNonNull "array" array
let res1 = new System.Collections.Generic.List<_>() // ResizeArray
let res2 = new System.Collections.Generic.List<_>() // ResizeArray
for i = 0 to array.Length - 1 do
let x = array.[i]
if f x then res1.Add(x) else res2.Add(x)
res1.ToArray(), res2.ToArray()
[<CompiledName("Find")>]
let find f (array: _[]) =
checkNonNull "array" array
let rec loop i =
if i >= array.Length then indexNotFound() else
if f array.[i] then array.[i] else loop (i+1)
loop 0
[<CompiledName("TryFind")>]
let tryFind f (array: _[]) =
checkNonNull "array" array
let rec loop i =
if i >= array.Length then None else
if f array.[i] then Some array.[i] else loop (i+1)
loop 0
[<CompiledName("Skip")>]
let skip count (array:'T[]) =
checkNonNull "array" array
if count > array.Length then invalidArg "count" (SR.GetString(SR.outOfRange))
if count = array.Length then
[| |]
else
let count = max count 0
Microsoft.FSharp.Primitives.Basics.Array.subUnchecked count (array.Length - count) array
[<CompiledName("SkipWhile")>]
let skipWhile p (array: 'T[]) =
checkNonNull "array" array
let mutable i = 0
let len = array.Length
while i < len && p array.[i] do i <- i + 1
match len - i with
| 0 -> [| |]
| resLen ->
Microsoft.FSharp.Primitives.Basics.Array.subUnchecked i resLen array
[<CompiledName("FindBack")>]
let findBack f (array: _[]) =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.findBack f array
[<CompiledName("TryFindBack")>]
let tryFindBack f (array: _[]) =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.tryFindBack f array
[<CompiledName("FindIndexBack")>]
let findIndexBack f (array : _[]) =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.findIndexBack f array
[<CompiledName("TryFindIndexBack")>]
let tryFindIndexBack f (array : _[]) =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.tryFindIndexBack f array
[<CompiledName("Windowed")>]
let windowed windowSize (array:'T[]) =
checkNonNull "array" array
if windowSize <= 0 then invalidArg "windowSize" (SR.GetString(SR.inputMustBePositive))
let len = array.Length
if windowSize > len then
[| |]
else
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked (len - windowSize + 1) : 'T[][]
for i = 0 to len - windowSize do
res.[i] <- Microsoft.FSharp.Primitives.Basics.Array.subUnchecked i windowSize array
res
[<CompiledName("ChunkBySize")>]
let chunkBySize chunkSize (array:'T[]) =
checkNonNull "array" array
if chunkSize <= 0 then invalidArg "chunkSize" (SR.GetString(SR.inputMustBePositive))
let len = array.Length
if len = 0 then
[| |]
else if chunkSize > len then
[| copy array |]
else
let chunkCount = (len - 1) / chunkSize + 1
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked chunkCount : 'T[][]
for i = 0 to len / chunkSize - 1 do
res.[i] <- Microsoft.FSharp.Primitives.Basics.Array.subUnchecked (i * chunkSize) chunkSize array
if len % chunkSize <> 0 then
res.[chunkCount - 1] <- Microsoft.FSharp.Primitives.Basics.Array.subUnchecked ((chunkCount - 1) * chunkSize) (len % chunkSize) array
res
[<CompiledName("SplitInto")>]
let splitInto count (array:_[]) =
checkNonNull "array" array
if count <= 0 then invalidArg "count" (SR.GetString(SR.inputMustBePositive))
Microsoft.FSharp.Primitives.Basics.Array.splitInto count array
[<CompiledName("Zip")>]
let zip (array1: _[]) (array2: _[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let len1 = array1.Length
if len1 <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths))
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len1
for i = 0 to len1 - 1 do
res.[i] <- (array1.[i],array2.[i])
res
[<CompiledName("Zip3")>]
let zip3 (array1: _[]) (array2: _[]) (array3: _[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
checkNonNull "array3" array3
let len1 = array1.Length
if len1 <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths))
if len1 <> array3.Length then invalidArg "array3" (SR.GetString(SR.arraysHadDifferentLengths))
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len1
for i = 0 to len1 - 1 do
res.[i] <- (array1.[i],array2.[i],array3.[i])
res
[<CompiledName("Unfold")>]
let unfold<'T,'State> (f:'State -> ('T*'State) option) (s:'State) =
let res = ResizeArray<_>()
let rec loop state =
match f state with
| None -> ()
| Some (x,s') ->
res.Add(x)
loop s'
loop s
res.ToArray()
[<CompiledName("Unzip")>]
let unzip (array: _[]) =
checkNonNull "array" array
let len = array.Length
let res1 = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len
let res2 = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len
for i = 0 to len - 1 do
let x,y = array.[i]
res1.[i] <- x;
res2.[i] <- y;
res1,res2
[<CompiledName("Unzip3")>]
let unzip3 (array: _[]) =
checkNonNull "array" array
let len = array.Length
let res1 = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len
let res2 = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len
let res3 = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len
for i = 0 to len - 1 do
let x,y,z = array.[i]
res1.[i] <- x;
res2.[i] <- y;
res3.[i] <- z;
res1,res2,res3
[<CompiledName("Reverse")>]
let rev (array: _[]) =
checkNonNull "array" array
let len = array.Length
let res = Microsoft.FSharp.Primitives.Basics.Array.zeroCreateUnchecked len
for i = 0 to len - 1 do
res.[(len - i) - 1] <- array.[i]
res
[<CompiledName("Fold")>]
let fold<'T,'State> (f : 'State -> 'T -> 'State) (acc: 'State) (array:'T[]) =
checkNonNull "array" array
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let mutable state = acc
let len = array.Length
for i = 0 to len - 1 do
state <- f.Invoke(state,array.[i])
state
[<CompiledName("FoldBack")>]
let foldBack<'T,'State> (f : 'T -> 'State -> 'State) (array:'T[]) (acc: 'State) =
checkNonNull "array" array
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let mutable res = acc
let len = array.Length
for i = len - 1 downto 0 do
res <- f.Invoke(array.[i],res)
res
[<CompiledName("FoldBack2")>]
let foldBack2<'T1,'T2,'State> f (array1:'T1[]) (array2:'T2 []) (acc: 'State) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let f = OptimizedClosures.FSharpFunc<_,_,_,_>.Adapt(f)
let mutable res = acc
let len = array1.Length
if len <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths))
for i = len - 1 downto 0 do
res <- f.Invoke(array1.[i],array2.[i],res)
res
[<CompiledName("Fold2")>]
let fold2<'T1,'T2,'State> f (acc: 'State) (array1:'T1[]) (array2:'T2 []) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let f = OptimizedClosures.FSharpFunc<_,_,_,_>.Adapt(f)
let mutable state = acc
let len = array1.Length
if len <> array2.Length then invalidArg "array2" (SR.GetString(SR.arraysHadDifferentLengths))
for i = 0 to len - 1 do
state <- f.Invoke(state,array1.[i],array2.[i])
state
let foldSubRight f (array : _[]) start fin acc =
checkNonNull "array" array
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let mutable res = acc
for i = fin downto start do
res <- f.Invoke(array.[i],res)
res
let scanSubLeft f initState (array : _[]) start fin =
checkNonNull "array" array
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let mutable state = initState
let res = create (2+fin-start) initState
for i = start to fin do
state <- f.Invoke(state,array.[i]);
res.[i - start+1] <- state
res
[<CompiledName("Scan")>]
let scan<'T,'State> f (acc:'State) (array : 'T[]) =
checkNonNull "array" array
let len = array.Length
scanSubLeft f acc array 0 (len - 1)
[<CompiledName("ScanBack")>]
let scanBack<'T,'State> f (array : 'T[]) (acc:'State) =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.scanSubRight f array 0 (array.Length - 1) acc
[<CompiledName("Singleton")>]
let inline singleton value = [|value|]
[<CompiledName("Pairwise")>]
let pairwise (array: 'T[]) =
checkNonNull "array" array
if array.Length < 2 then [||] else
init (array.Length-1) (fun i -> array.[i],array.[i+1])
[<CompiledName("Reduce")>]
let reduce f (array : _[]) =
checkNonNull "array" array
let len = array.Length
if len = 0 then
invalidArg "array" LanguagePrimitives.ErrorStrings.InputArrayEmptyString
else
let f = OptimizedClosures.FSharpFunc<_,_,_>.Adapt(f)
let mutable res = array.[0]
for i = 1 to len - 1 do
res <- f.Invoke(res,array.[i])
res
[<CompiledName("ReduceBack")>]
let reduceBack f (array : _[]) =
checkNonNull "array" array
let len = array.Length
if len = 0 then invalidArg "array" LanguagePrimitives.ErrorStrings.InputArrayEmptyString
else foldSubRight f array 0 (len - 2) array.[len - 1]
[<CompiledName("SortInPlaceWith")>]
let sortInPlaceWith f (array : 'T[]) =
checkNonNull "array" array
let len = array.Length
if len < 2 then ()
elif len = 2 then
let c = f array.[0] array.[1]
if c > 0 then
let tmp = array.[0]
array.[0] <- array.[1];
array.[1] <- tmp
else
System.Array.Sort(array, ComparisonIdentity.FromFunction(f))
[<CompiledName("SortInPlaceBy")>]
let sortInPlaceBy (f: 'T -> 'U) (array : 'T[]) =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.unstableSortInPlaceBy f array
[<CompiledName("SortInPlace")>]
let sortInPlace (array : 'T[]) =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.unstableSortInPlace array
[<CompiledName("SortWith")>]
let sortWith (f: 'T -> 'T -> int) (array : 'T[]) =
checkNonNull "array" array
let result = copy array
sortInPlaceWith f result;
result
[<CompiledName("SortBy")>]
let sortBy f array =
checkNonNull "array" array
let result = copy array
sortInPlaceBy f result;
result
[<CompiledName("Sort")>]
let sort array =
checkNonNull "array" array
let result = copy array
sortInPlace result;
result
[<CompiledName("SortByDescending")>]
let inline sortByDescending f array =
checkNonNull "array" array
let inline compareDescending a b = compare (f b) (f a)
sortWith compareDescending array
[<CompiledName("SortDescending")>]
let inline sortDescending array =
checkNonNull "array" array
let inline compareDescending a b = compare b a
sortWith compareDescending array
[<CompiledName("ToSeq")>]
let toSeq array =
checkNonNull "array" array
Seq.ofArray array
[<CompiledName("OfSeq")>]
let ofSeq source =
checkNonNull "source" source
Seq.toArray source
[<CompiledName("FindIndex")>]
let findIndex f (array : _[]) =
checkNonNull "array" array
let len = array.Length
let rec go n =
if n >= len then
indexNotFound()
elif f array.[n] then
n
else go (n+1)
go 0
[<CompiledName("TryFindIndex")>]
let tryFindIndex f (array : _[]) =
checkNonNull "array" array
let len = array.Length
let rec go n = if n >= len then None elif f array.[n] then Some n else go (n+1)
go 0
[<CompiledName("Permute")>]
let permute p (array : _[]) =
checkNonNull "array" array
Microsoft.FSharp.Primitives.Basics.Array.permute p array
[<CompiledName("Sum")>]
let inline sum (array: (^T)[] ) : ^T =
checkNonNull "array" array
let mutable acc = LanguagePrimitives.GenericZero< (^T) >
for i = 0 to array.Length - 1 do
acc <- Checked.(+) acc array.[i]
acc
[<CompiledName("SumBy")>]
let inline sumBy (f: 'T -> ^U) (array:'T[]) : ^U =
checkNonNull "array" array
let mutable acc = LanguagePrimitives.GenericZero< (^U) >
for i = 0 to array.Length - 1 do
acc <- Checked.(+) acc (f array.[i])
acc
[<CompiledName("Min")>]
let inline min (array:_[]) =
checkNonNull "array" array
if array.Length = 0 then invalidArg "array" LanguagePrimitives.ErrorStrings.InputArrayEmptyString
let mutable acc = array.[0]
for i = 1 to array.Length - 1 do
let curr = array.[i]
if curr < acc then
acc <- curr
acc
[<CompiledName("MinBy")>]
let inline minBy f (array:_[]) =
checkNonNull "array" array
if array.Length = 0 then invalidArg "array" LanguagePrimitives.ErrorStrings.InputArrayEmptyString
let mutable accv = array.[0]
let mutable acc = f accv
for i = 1 to array.Length - 1 do
let currv = array.[i]
let curr = f currv
if curr < acc then
acc <- curr
accv <- currv
accv
[<CompiledName("Max")>]
let inline max (array:_[]) =
checkNonNull "array" array
if array.Length = 0 then invalidArg "array" LanguagePrimitives.ErrorStrings.InputArrayEmptyString
let mutable acc = array.[0]
for i = 1 to array.Length - 1 do
let curr = array.[i]
if curr > acc then
acc <- curr
acc
[<CompiledName("MaxBy")>]
let inline maxBy f (array:_[]) =
checkNonNull "array" array
if array.Length = 0 then invalidArg "array" LanguagePrimitives.ErrorStrings.InputArrayEmptyString
let mutable accv = array.[0]
let mutable acc = f accv
for i = 1 to array.Length - 1 do
let currv = array.[i]
let curr = f currv
if curr > acc then
acc <- curr
accv <- currv
accv
[<CompiledName("Average")>]
let inline average (array:_[]) =
checkNonNull "array" array
Seq.average array
[<CompiledName("AverageBy")>]
let inline averageBy f (array:_[]) =
checkNonNull "array" array
Seq.averageBy f array
[<CompiledName("CompareWith")>]
let inline compareWith (comparer:'T -> 'T -> int) (array1: 'T[]) (array2: 'T[]) =
checkNonNull "array1" array1
checkNonNull "array2" array2
let length1 = array1.Length
let length2 = array2.Length
let minLength = Operators.min length1 length2
let rec loop index =
if index = minLength then
if length1 = length2 then 0
elif length1 < length2 then -1
else 1
else
let result = comparer array1.[index] array2.[index]
if result <> 0 then result else
loop (index+1)
loop 0
[<CompiledName("GetSubArray")>]
let sub (array:'T[]) (startIndex:int) (count:int) =
checkNonNull "array" array
if startIndex < 0 then invalidArg "startIndex" (SR.GetString(SR.inputMustBeNonNegative))
if count < 0 then invalidArg "count" (SR.GetString(SR.inputMustBeNonNegative))
if startIndex + count > array.Length then invalidArg "count" (SR.GetString(SR.outOfRange))
Microsoft.FSharp.Primitives.Basics.Array.subUnchecked startIndex count array
[<CompiledName("Item")>]
let item n (array:_[]) =
array.[n]
[<CompiledName("TryItem")>]
let tryItem index (array:'T[]) =
checkNonNull "array" array
if index < 0 || index >= array.Length then None
else Some(array.[index])
[<CompiledName("Get")>]
let get (array:_[]) n =
array.[n]
[<CompiledName("Set")>]
let set (array:_[]) n v =
array.[n] <- v
[<CompiledName("Fill")>]
let fill (target:'T[]) (targetIndex:int) (count:int) (x:'T) =
checkNonNull "target" target
if targetIndex < 0 then invalidArg "targetIndex" (SR.GetString(SR.inputMustBeNonNegative))
if count < 0 then invalidArg "count" (SR.GetString(SR.inputMustBeNonNegative))
for i = targetIndex to targetIndex + count - 1 do
target.[i] <- x
[<CompiledName("ExactlyOne")>]
let exactlyOne (array:'T[]) =
checkNonNull "array" array
if array.Length = 1 then array.[0]
elif array.Length = 0 then invalidArg "array" LanguagePrimitives.ErrorStrings.InputSequenceEmptyString
else invalidArg "array" (SR.GetString(SR.inputSequenceTooLong))