-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
1161 lines (1090 loc) · 25.6 KB
/
index.d.ts
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
/**
* The `iiris` module contains the core functionality of Iiris. It contains
* various utility functions that work with a wide variety of data types, while
* more specialized functions are stored in separate modules. It is designed to
* be imported with a wildcard, e.g.
*
* ```typescript
* import * as I from 'iiris'
* ```
*
* @module
*/
/** A function that takes no arguments. */
type Function0<R> = () => R
/** A function that takes one argument. */
type Function1<T, R> = (value: T) => R
/** A function that takes two arguments. */
type Function2<T1, T2, R> = (a1: T1, a2: T2) => R
/** A function that takes zero or more arguments. */
type VariadicFunction0<R> = (...args: any[]) => R // eslint-disable-line @typescript-eslint/no-explicit-any
/** A function that takes one or more arguments. */
type VariadicFunction1<T, R> = (a1: T, ...args: unknown[]) => R
/** A function that takes two or more arguments. */
type VariadicFunction2<T1, T2, R> = (a1: T1, a2: T2, ...args: unknown[]) => R
/** A tuple with 2 elements. */
type Tuple2 = [unknown, unknown]
/** A tuple with 3 elements. */
type Tuple3 = [unknown, unknown, unknown]
/** A tuple with 4 elements. */
type Tuple4 = [unknown, unknown, unknown, unknown]
/** Drop the first element of a tuple. */
type Drop1<T extends unknown[]> = T extends [unknown, ...infer U] ? U : never
/** Drop the first two elements of a tuple. */
type Drop2<T extends unknown[]> = T extends [unknown, unknown, ...infer U]
? U
: never
/** Drop the first three elements of a tuple. */
type Drop3<T extends unknown[]> = T extends [
unknown,
unknown,
unknown,
...infer U
]
? U
: never
/** Drop the last element from a tuple. */
type DropLast1<T extends unknown[]> = T extends [...infer U, unknown]
? U
: never
/** Drop the last two elements of a tuple. */
type DropLast2<T extends unknown[]> = T extends [...infer U, unknown, unknown]
? U
: never
/** Drop the last three elements of a tuple. */
type DropLast3<T extends unknown[]> = T extends [
...infer U,
unknown,
unknown,
unknown
]
? U
: never
/** A curried function of two arguments. */
type CurriedFunction2<T extends Tuple2, R> = {
(...args: T): R
(...args: DropLast1<T>): (...args: Drop1<T>) => R
}
/** A curried function of three arguments. */
type CurriedFunction3<T extends Tuple3, R> = {
(...args: T): R
(...args: DropLast1<T>): (...args: Drop2<T>) => R
(...args: DropLast2<T>): CurriedFunction2<Drop1<T>, R>
}
/** A curried function of four arguments. */
type CurriedFunction4<T extends Tuple4, R> = {
(...args: T): R
(...args: DropLast1<T>): (...args: Drop3<T>) => R
(...args: DropLast2<T>): CurriedFunction2<Drop2<T>, R>
(...args: DropLast3<T>): CurriedFunction3<Drop1<T>, R>
}
/** A data type that can be compared with the `<` and `>` operators. */
type Ordered = number | bigint | string | Date | boolean
/** A helper type that widens primitive literal types. */
type Widen<T> = T extends number
? number
: T extends bigint
? bigint
: T extends string
? string
: T extends boolean
? boolean
: T
/**
* Add two numbers together.
*
* @category Math
* @example
*
* ```typescript
* I.map(I.add(1), [1, 2, 3])
* // => [2, 3, 4]
* ```
*/
export function add(n: number): (m: number) => number
export function add(n: number, m: number): number
/**
* Given a `fn` that maps a `value` to an {@link Ordered} value, create an
* ascending comparator function.
*
* **Note:** The returned function is not curried.
*
* @category Sorting
* @example
*
* ```typescript
* I.sort(I.ascend(I.prop('age')), [{ name: 'Bob' }, { name: 'Alice' }])
* // => [{ name: 'Alice' }, { name: 'Bob' }]
* ```
*
* @see descend
* @see sort
* @see sortWith
*/
export function ascend<T, U extends Ordered>(
fn: (value: T) => U
): (first: T, second: T) => number
/**
* Create a version of `fn` that accepts two arguments.
*
* **Note:** The returned function is not curried.
*
* @category Function
* @example
*
* ```typescript
* const fn = (...args) => args
* const wrapped = I.binary(fn)
*
* fn(1, 2, 3)
* // => [1, 2, 3]
*
* wrapped(1, 2, 3)
* // => [1, 2]
* ```
*
* @see unary
*/
export function binary<T1, T2, R>(
fn: VariadicFunction2<T1, T2, R>
): Function2<T1, T2, R>
/**
* Clamp a number within the closed interval `[lower, upper]`.
*
* @category Relation
* @example
*
* ```typescript
* I.clamp([0, 10], 5)
* // => 5
*
* I.clamp([0, 10], 15)
* // => 10
*
* I.clamp([0, 10], -5)
* // => 0
* ```
*/
export function clamp<T extends Ordered>(
interval: [lower: T, upper: T]
): (value: Widen<T>) => Widen<T>
export function clamp<T extends Ordered>(
interval: [lower: T, upper: T],
value: T
): Widen<T>
/**
* Create a version of a predicate `fn` that flips the returned boolean value.
*
* @category Function
* @example
*
* ```typescript
* const isZero = (v) => v === 0
* const notZero = I.complement(isZero)
*
* notZero(0)
* // => false
*
* notZero(1)
* // => true
* ```
*/
export function complement<T extends VariadicFunction0<boolean>>(fn: T): T
/**
* Right-to-left function composition.
*
* **Note:** This function is not curried.
*
* @category Function
* @example
*
* ```typescript
* const composed = I.compose(I.add(10), I.multiply(2))
*
* composed(2)
* // => 14
* ```
*/
export function compose<T extends unknown[], R>(
fn: (...args: T) => R
): (...args: T) => R
export function compose<T extends unknown[], T1, R>(
fn1: Function1<T1, R>,
fn2: (...args: T) => T1
): (...args: T) => R
export function compose<T extends unknown[], T1, T2, R>(
fn1: Function1<T2, R>,
fn2: Function1<T1, T2>,
fn3: (...args: T) => T1
): (...args: T) => R
export function compose<T extends unknown[], T1, T2, T3, R>(
fn1: Function1<T3, R>,
fn2: Function1<T2, T3>,
fn3: Function1<T1, T2>,
fn4: (...args: T) => T1
): (...args: T) => R
export function compose<T extends unknown[], T1, T2, T3, T4, R>(
fn1: Function1<T4, R>,
fn2: Function1<T3, T4>,
fn3: Function1<T2, T3>,
fn4: Function1<T1, T2>,
fn5: (...args: T) => T1
): (...args: T) => R
export function compose<T extends unknown[], T1, T2, T3, T4, T5, R>(
fn1: Function1<T5, R>,
fn2: Function1<T4, T5>,
fn3: Function1<T3, T4>,
fn4: Function1<T2, T3>,
fn5: Function1<T1, T2>,
fn6: (...args: T) => T1
): (...args: T) => R
export function compose<T extends unknown[], T1, T2, T3, T4, T5, T6, R>(
fn1: Function1<T6, R>,
fn2: Function1<T5, T6>,
fn3: Function1<T4, T5>,
fn4: Function1<T3, T4>,
fn5: Function1<T2, T3>,
fn6: Function1<T1, T2>,
fn7: (...args: T) => T1
): (...args: T) => R
export function compose<T extends unknown[], T1, T2, T3, T4, T5, T6, T7, R>(
fn1: Function1<T7, R>,
fn2: Function1<T6, T7>,
fn3: Function1<T5, T6>,
fn4: Function1<T4, T5>,
fn5: Function1<T3, T4>,
fn6: Function1<T2, T3>,
fn7: Function1<T1, T2>,
fn8: (...args: T) => T1
): (...args: T) => R
export function compose<T extends unknown[], T1, T2, T3, T4, T5, T6, T7, T8, R>(
fn1: Function1<T8, R>,
fn2: Function1<T7, T8>,
fn3: Function1<T6, T7>,
fn4: Function1<T5, T6>,
fn5: Function1<T4, T5>,
fn6: Function1<T3, T4>,
fn7: Function1<T2, T3>,
fn8: Function1<T1, T2>,
fn9: (...args: T) => T1
): (...args: T) => R
export function compose<
T extends unknown[],
T1,
T2,
T3,
T4,
T5,
T6,
T7,
T8,
T9,
R
>(
fn1: Function1<T9, R>,
fn2: Function1<T8, T9>,
fn3: Function1<T7, T8>,
fn4: Function1<T6, T7>,
fn5: Function1<T5, T6>,
fn6: Function1<T4, T5>,
fn7: Function1<T3, T4>,
fn8: Function1<T2, T3>,
fn9: Function1<T1, T2>,
fn10: (...args: T) => T1
): (...args: T) => R
/**
* Create a function that always returns `value`.
*
* @category Function
* @example
*
* ```typescript
* I.map(I.constant(1), [1, 2, 3])
* // => [1, 1, 1]
* ```
*/
export function constant<T>(value: T): () => T
/**
* Create a curried version of a `fn` taking two arguments.
*
* @category Function
* @example
*
* ```typescript
* const add = I.curry2((a, b) => a + b)
*
* add(1)(2)
* // => 3
*
* add(1, 2)
* // => 3
* ```
*
* @see curry3
* @see curry4
*/
export function curry2<T extends Tuple2, R>(
fn: (...args: T) => R
): CurriedFunction2<T, R>
/**
* Create a curried version of a `fn` taking three arguments.
*
* @category Function
* @example
*
* ```typescript
* const add = I.curry3((a, b, c) => a + b + c)
*
* add(1)(2)(3)
* // => 6
*
* add(1, 2, 3)
* // => 6
* ```
*
* @see curry2
* @see curry4
*/
export function curry3<T extends Tuple3, R>(
fn: (...args: T) => R
): CurriedFunction3<T, R>
/**
* Create a curried version of a `fn` taking four arguments.
*
* @category Function
* @example
*
* ```typescript
* const add = I.curry4((a, b, c, d) => a + b + c + d)
*
* add(1)(2)(3)(4)
* // => 10
*
* add(1, 2, 3, 4)
* // => 10
* ```
*
* @see curry2
* @see curry3
*/
export function curry4<T extends Tuple4, R>(
fn: (...args: T) => R
): CurriedFunction4<T, R>
/**
* Decrement a number by 1.
*
* @category Math
* @example
*
* ```typescript
* I.map(I.dec, [1, 2, 3])
* // => [0, 1, 2]
* ```
*
* @see inc
*/
export function dec(n: number): number
/**
* Given a `fn` that maps a `value` to an {@link Ordered} value, create a
* descending comparator function.
*
* **Note:** The returned function is not curried.
*
* @category Sorting
* @example
*
* ```typescript
* I.sort(I.descend(I.prop('name')), [{ name: 'Alice' }, { name: 'Bob' }])
* // => [{ name: 'Bob' }, { name: 'Alice' }]
* ```
*
* @see ascend
* @see sort
* @see sortWith
*/
export function descend<T, U extends Ordered>(
fn: (value: T) => U
): (first: T, second: T) => number
/**
* Divide `dividend` by the `divisor`.
*
* @category Math
* @example
*
* ```typescript
* I.map(I.divideBy(2), [1, 2, 3])
* // => [0.5, 1, 1.5]
* ```
*/
export function divideBy(divisor: number): (dividend: number) => number
export function divideBy(divisor: number, dividend: number): number
/**
* Check if two values are deeply equal.
*
* - Primitive values are compared with
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness#same-value-zero_equality SameValueZero}.
* - Only the own enumerable keys of objects are considered.
* - The order of object keys does not matter.
* - Built-in objects (e.g. Arrays, Maps & Sets) are not checked for extra keys.
* - Sets and Map keys are compared with
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness#same-value-zero_equality SameValueZero}.
* - Error objects are equal if their `name` and `message` properties are equal.
* - Functions are compared with `===`.
* - Supports cyclic references.
* - Does not support WeakMaps, WeakSets or typed arrays.
*
* @category Relation
* @example
*
* ```typescript
* I.equals([1, 2, 3], [1, 2, 3])
* // => true
*
* I.equals([1, 2, 3], [4, 5, 6])
* // => false
* ```
*/
export function equals<T>(first: T): (second: T) => boolean
export function equals<T>(first: T, second: T): boolean
/**
* Like {@link equals}, but the function `fn` is applied to both values before
* determining equality.
*
* @category Relation
* @example
*
* ```typescript
* I.equalsBy(Math.floor, 1, 1.5)
* // => true
* ```
*
* @see equals
*/
export function equalsBy<T, U>(
fn: (value: T) => U
): {
(first: T): (second: T) => boolean
(first: T, second: T): boolean
}
export function equalsBy<T, U>(
fn: (value: T) => U,
first: T
): (second: T) => boolean
export function equalsBy<T, U>(
fn: (value: T) => U,
first: T,
second: T
): boolean
/**
* Flip the arguments of a binary function.
*
* **Note:** The returned function is not curried.
*
* @category Function
* @example
*
* ```typescript
* const fn = (...args) => args
* const flipped = I.flip(fn)
*
* flipped(1, 2)
* // => [2, 1]
* ```
*/
export function flip<T, U, R>(fn: Function2<T, U, R>): Function2<U, T, R>
/**
* Check if the `second` argument is greater than the `first`.
*
* Designed to be used as a curried predicate.
*
* @category Relation
* @example
*
* ```typescript
* I.filter(I.gt(2), [1, 2, 3])
* // => [3]
* ```
*/
export function gt<T extends Ordered>(first: T): (second: Widen<T>) => boolean
export function gt<T extends Ordered>(first: T, second: T): boolean
/**
* Check if the `second` argument is greater than or equal to the `first`.
*
* Designed to be used as a curried predicate.
*
* @category Relation
* @example
*
* ```typescript
* I.filter(I.gte(2), [1, 2, 3])
* // => [2, 3]
* ```
*/
export function gte<T extends Ordered>(first: T): (second: Widen<T>) => boolean
export function gte<T extends Ordered>(first: T, second: T): boolean
/**
* Identity function. Returns the first argument.
*
* @category Function
* @example
*
* ```typescript
* I.identity(5)
* // => 5
* ```
*/
export function identity<T>(value: T): T
/**
* Increment a number by 1.
*
* @category Math
* @example
*
* ```typescript
* I.map(I.inc, [1, 2, 3])
* // => [2, 3, 4]
* ```
*/
export function inc(n: number): number
/**
* Check if the `value` is an
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array Array}.
*
* @category Type tests
*/
export function isArray<T>(
value: T | readonly unknown[]
): value is readonly unknown[]
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt BigInt}.
*
* @category Type tests
*/
export function isBigInt<T>(value: T | bigint): value is bigint
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-US/docs/Glossary/boolean boolean}.
*
* @category Type tests
*/
export function isBoolean<T>(value: T | boolean): value is boolean
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date Date}.
*
* @category Type tests
*/
export function isDate<T>(value: T | Date): value is Date
/**
* Check if the `value` is not
* {@link https://developer.mozilla.org/en-US/docs/Glossary/undefined undefined}.
*
* @category Type tests
*/
export function isDefined<T>(value: T | undefined): value is T
/**
* Check if the `value` is an
* {@link https://developer.mozilla.org/en-us/docs/Web/JavaScript/Reference/Global_Objects/Error Error}.
*
* @category Type tests
*/
export function isError<T>(value: T | Error): value is Error
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions function}.
*
* @category Type tests
*/
export function isFunction<T>(value: T | Function): value is Function // eslint-disable-line @typescript-eslint/ban-types
/**
* Check if the `value` is
* {@link https://developer.mozilla.org/en-US/docs/Glossary/null null} or
* {@link https://developer.mozilla.org/en-US/docs/Glossary/undefined undefined}.
*
* @category Type tests
*/
export function isNil<T>(value: T | null | undefined): value is null | undefined
/**
* Check if the `value` is
* {@link https://developer.mozilla.org/en-US/docs/Glossary/null null}.
*
* @category Type tests
*/
export function isNull<T>(value: T | null): value is null
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-US/docs/Glossary/number number}.
*
* @category Type tests
*/
export function isNumber<T>(value: T | number): value is number
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-us/docs/Web/JavaScript/Reference/Global_Objects/Map Map}.
*
* @category Type tests
*/
export function isMap<T>(
value: T | Map<unknown, unknown>
): value is Map<unknown, unknown>
/**
* Check if the `value` is an
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#objects object}.
*
* Note that functions and arrays are also objects.
*
* @category Type tests
*/
export function isObject<T>(value: T | object): value is object
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp RegExp}.
*
* @category Type tests
*/
export function isRegExp<T>(value: T | RegExp): value is RegExp
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set Set}.
*
* @category Type tests
*/
export function isSet<T>(value: T | Set<unknown>): value is Set<unknown>
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-us/docs/Web/JavaScript/Reference/Global_Objects/String string}.
*
* @category Type tests
*/
export function isString<T>(value: T | string): value is string
/**
* Check if the `value` is a
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol Symbol}.
*
* @category Type tests
*/
export function isSymbol<T>(value: T | symbol): value is symbol
/**
* Check if the `value` is
* {@link https://developer.mozilla.org/en-US/docs/Glossary/undefined undefined}.
*
* @category Type tests
*/
export function isUndefined<T>(value: T | undefined): value is undefined
/**
* Check if the `second` argument is less than the `first`.
*
* Designed to be used as a curried predicate.
*
* @category Relation
* @example
*
* ```typescript
* I.filter(I.lt(2), [1, 2, 3])
* // => [1]
* ```
*/
export function lt<T extends Ordered>(first: T): (second: Widen<T>) => boolean
export function lt<T extends Ordered>(first: T, second: T): boolean
/**
* Check if the `second` argument is less than or equal to the `first`.
*
* Designed to be used as a curried predicate.
*
* @category Relation
* @example
*
* ```typescript
* I.filter(I.lte(2), [1, 2, 3])
* // => [1, 2]
* ```
*/
export function lte<T extends Ordered>(first: T): (second: Widen<T>) => boolean
export function lte<T extends Ordered>(first: T, second: T): boolean
/**
* Apply `fn` to `maybeValue` if it is not `undefined`, return `defaultValue` otherwise.
*
* @category Logic
* @example
*
* ```typescript
* I.maybe('', (s) => s.toUpperCase(), 'hi')
* // => 'HI'
*
* I.maybe('', (s) => s.toUpperCase(), undefined)
* // => ''
* ```
*
* @see valueOr
*/
export function maybe<R>(
defaultValue: R
): {
<T>(fn: (value: T) => R): (maybeValue: T | undefined) => R
<T>(fn: (value: T) => R, maybeValue: T | undefined): R
}
export function maybe<T, R>(
defaultValue: R,
fn: (value: T) => R
): (maybeValue: T | undefined) => R
export function maybe<T, R>(
defaultValue: R,
fn: (value: T) => R,
maybeValue: T | undefined
): R
/**
* Return the larger of two values.
*
* @category Relation
* @example
*
* ```typescript
* I.max(1, 2)
* // => 2
*
* I.max('a', 'b')
* // => 'b'
* ```
*
* @see min
* @see maxBy
*/
export function max<T extends Ordered>(first: T): (second: Widen<T>) => Widen<T>
export function max<T extends Ordered>(first: T, second: T): Widen<T>
/**
* Like {@link max}, but apply `fn` to both values before determining their ordering.
*
* @category Relation
* @example
*
* ```typescript
* I.maxBy(Math.abs, 1, -2)
* // => -2
* ```
*
* @see max
* @see minBy
*/
export function maxBy<T, U extends Ordered>(
fn: (value: T) => U
): {
(first: T, second: T): Widen<T>
(first: T): (second: T) => Widen<T>
}
export function maxBy<T, U extends Ordered>(
fn: (value: T) => U,
first: T
): (second: Widen<T>) => Widen<T>
export function maxBy<T, U extends Ordered>(
fn: (value: T) => U,
first: T,
second: T
): Widen<T>
/**
* Return the largest element of an `array` or `undefined`.
*
* @category Reducing arrays
* @example
*
* ```typescript
* I.maximum([1, 2, 3])
* // => 3
*
* I.maximum([])
* // => undefined
* ```
*
* @see minimum
* @see maximumBy
*/
export function maximum<T extends Ordered>(array: readonly T[]): T | undefined
/**
* Like {@link maximum}, but apply `fn` to each value before determining their ordering.
*
* @category Reducing arrays
* @example
*
* ```typescript
* const users = [
* { name: 'Alice', age: 10 },
* { name: 'Bob', age: 20 },
* { name: 'Carol', age: 30 },
* ]
*
* I.maximumBy((u) => u.age, users)
* // => { name: 'Carol', age: 30 }
* ```
*
* @see maximum
* @see minimumBy
*/
export function maximumBy<T, U extends Ordered>(
fn: (value: T) => U
): (array: readonly T[]) => T | undefined
export function maximumBy<T, U extends Ordered>(
fn: (value: T) => U,
array: readonly T[]
): T | undefined
/**
* Return the smaller of two values.
*
* @category Relation
* @example
*
* ```typescript
* I.min(1, 2)
* // => 1
*
* I.min('a', 'b')
* // => 'a'
* ```
*
* @see max
* @see minBy
*/
export function min<T extends Ordered>(first: T): (second: Widen<T>) => Widen<T>
export function min<T extends Ordered>(first: T, second: T): T
/**
* Like {@link min}, but apply `fn` to both values before determining their ordering.
*
* @category Relation
* @example
*
* ```typescript
* I.minBy(Math.abs, -1, 2)
* // => -1
* ```
*
* @see min
* @see maxBy
*/
export function minBy<T, U extends Ordered>(
fn: (value: T) => U
): {
(first: T): (second: T) => Widen<T>
(first: T, second: T): Widen<T>
}
export function minBy<T, U extends Ordered>(
fn: (value: T) => U,
first: T
): (second: Widen<T>) => Widen<T>
export function minBy<T, U extends Ordered>(
fn: (value: T) => U,
first: T,
second: T
): Widen<T>
/**
* Multiply two numbers together.
*
* @category Math
* @example
*
* ```typescript
* I.map(I.multiply(2), [1, 2, 3])
* // => [2, 4, 6]
* ```
*/
export function multiply(multiplicand: number): (multiplier: number) => number
export function multiply(multiplicand: number, multiplier: number): number
/**
* Return `n` with its sign reversed.
*
* @category Math
* @example
*
* ```typescript
* I.map(I.negate, [1, 2, 3])
* // => [-1, -2, -3]
* ```
*/
export function negate(n: number): number
/**
* Do nothing an return `undefined`.
*
* @category Function
* @example
*
* ```typescript
* I.map(I.noop, [1, 2, 3])
* // => [undefined, undefined, undefined]
* ```
*/
export function noop(): undefined
/**
* Logical not. Flip the value of a boolean argument
*
* @category Function
* @example
*
* ```typescript
* I.not(true)
* // => false
*
* I.not(false)
* // => true
* ```
*
* @see complement
*/
export function not(bool: boolean): boolean
/**
* Pipe an `initial` value through one or more functions in left-to-right order,
* allowing the programmer to chain operations in a readable manner.