mirl 9.2.0

Miners Rust Lib - A massive collection of ever growing and changing functions, structs, and enums. Check the description for compatibility and toggleable features! (Most of the lib is controlled by flags/features so the lib can continue to be lightweight despite its size)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
#![allow(clippy::cast_lossless)]
#![allow(clippy::cast_precision_loss)]
#![allow(clippy::cast_possible_truncation)]

use crate::math::{Bounded, ConstZero};
#[cfg(feature = "test")]
/// A list of tests
pub mod tests;

/// A helper trait for the people who are used to `.signum()`
pub const trait SigNum {
    /// Returns the sign of the number -> -1, 0, 1
    #[must_use]
    fn signum(self) -> Self;
}
impl<T: [const] Sign> const SigNum for T {
    fn signum(self) -> Self {
        self.sign()
    }
}

/// A trait for numbers to support `sign()`
pub const trait Sign {
    /// Returns the sign of the number -> -1, 0, 1
    #[must_use]
    fn sign(self) -> Self;
}

macro_rules! impl_sign_u {
    ($($t:ty),*) => {
        // See those two spaces between the `const` and `Sign`?
        $(impl const  Sign for $t {
            fn sign(self) -> Self {
                if self > 0 { 1  }
                else { 0  }
            }
        })*
    };
}
macro_rules! impl_sign {
    ($($t:ty),*) => {
        // See those two spaces between the `const` and `Sign`?
        $(impl const  Sign for $t {
            fn sign(self) -> Self {
                if self > 0 { 1  }
                else if self < 0  { -1 }
                else { 0  }
            }
        })*
    };
}
macro_rules! impl_sign_float {
    ($($t:ty),*) => {
        // See those two spaces between the `const` and `Sign`?
        $(impl const  Sign for $t {
            fn sign(self) -> Self {
                if self > 0.0 { 1.0  }
                else if self < 0.0  { -1.0 }
                else { 0.0  }
            }
        })*
    };
}

impl_sign!(i8, i16, i32, i64, i128, isize);
impl_sign_u!(u8, u16, u32, u64, u128, usize);
impl_sign_float!(f16, f32, f64, f128);

// use core::f32;
// use core::convert::TryFrom;

// pub fn from_u8<T: TryFrom<u8>>(value: u8) -> T {
//     T::try_from(value).ok().expect("constant u8 conversion failed")
// }

macro_rules! impl_sqrt {
    ($($t:ty),*) => {
        $(
            impl Sqrt for $t {
                fn sqrt(self) -> Self {
                    // There has to be a better way
                    core::f64::math::sqrt(self as f64) as Self
                }
            }
        )*
    };
}

impl_sqrt!(i8);
impl_sqrt!(i16);
impl_sqrt!(i32);
impl_sqrt!(i64);
impl_sqrt!(i128);
impl_sqrt!(isize);
impl_sqrt!(u8);
impl_sqrt!(u16);
impl_sqrt!(u32);
impl_sqrt!(u64);
impl_sqrt!(u128);
impl_sqrt!(usize);

// use crate::prelude::{U1, U2, U4};
/// Core trait: addition of a signed number to an unsigned number (returning)
pub const trait AddSignLogic<T> {
    /// Simple addition of the possibly negative number (returning)
    #[must_use]
    fn add_sign(&self, value: T) -> Self;

    /// Addition of the possibly negative number without over/underflowing (returning)
    #[must_use]
    fn saturated_add_sign(&self, value: T) -> Self;
}

/// Trait for mutating setters, automatically implemented using `AddSignLogic`
pub const trait AddSignSetter<T>: AddSignLogic<T> {
    /// Simple addition of the possibly negative number (mutating)
    fn set_add_sign(&mut self, value: T);

    /// Addition of the possibly negative number without over/underflowing (mutating)
    fn set_saturated_add_sign(&mut self, value: T);
}

impl<U, S> AddSignLogic<S> for U
where
    U: Copy
        + WrapOps
        + SaturatingAdd<Output = U>
        + SaturatingSub<Output = U>
        + core::ops::Add<U, Output = U>
        + Bounded
        + ConstZero
        + core::ops::Sub<U, Output = U>,
    S: Copy + core::cmp::PartialOrd + Abs + ConstZero + TryIntoPatch<U>,
{
    fn add_sign(&self, value: S) -> Self {
        if value >= S::ZERO {
            (value).try_into_value().map_or_else(
                || self.wrapping_add(U::max_value()),
                |pos_val| self.wrapping_add(pos_val),
            )
        } else {
            (value.abs()).try_into_value().map_or_else(
                || self.wrapping_sub(U::max_value()),
                |sub_val| self.wrapping_sub(sub_val),
            )
        }
    }

    fn saturated_add_sign(&self, value: S) -> Self {
        if value >= S::ZERO {
            (value).try_into_value().map_or_else(U::max_value, |pos_val| {
                self.saturating_add(pos_val)
            })
        } else {
            (value.abs())
                .try_into_value()
                .map_or_else(|| U::ZERO, |sub_val| self.saturating_sub(sub_val))
        }
    }
}

impl<U, S> AddSignSetter<S> for U
where
    U: AddSignLogic<S>,
{
    fn set_add_sign(&mut self, value: S) {
        *self = self.add_sign(value);
    }

    fn set_saturated_add_sign(&mut self, value: S) {
        *self = self.saturated_add_sign(value);
    }
}

/// Trait for mapping between signed and unsigned integer types
pub const trait MapToSign {
    /// Signed Version
    type Signed;
    /// Unsigned Version
    type Unsigned;

    /// Map from unsigned back to signed by flipping the sign bit
    fn map_non_sign_to_sign(self) -> Self::Signed;
}

/// Trait for mapping between signed and unsigned integer types
pub const trait MapToUnSign {
    /// Signed Version
    type Signed;
    /// Unsigned Version
    type Unsigned;

    /// Map from signed to unsigned by flipping the sign bit
    fn map_sign_to_non_sign(self) -> Self::Unsigned;
}
use crate::{math::ConstOne, prelude::TryIntoPatch};
/// Macro to implement `SignMapping` for integer type pairs
macro_rules! impl_sign_mapping {
    ($signed:ty, $unsigned:ty) => {
        impl const MapToUnSign for $signed {
            type Signed = $signed;
            type Unsigned = $unsigned;

            #[allow(clippy::cast_sign_loss)]
            #[allow(trivial_numeric_casts)]
            fn map_sign_to_non_sign(self) -> Self::Unsigned {
                (self as Self::Unsigned).wrapping_add(
                    <$unsigned>::MAX / (<$unsigned>::ONE + <$unsigned>::ONE)
                        + <$unsigned>::ONE,
                )
            }
        }
        impl const MapToSign for $unsigned {
            type Signed = $signed;
            type Unsigned = $unsigned;

            #[allow(clippy::cast_possible_wrap)]
            #[allow(trivial_numeric_casts)]
            fn map_non_sign_to_sign(self) -> Self::Signed {
                self.wrapping_sub(
                    <$unsigned>::MAX / (<$unsigned>::ONE + <$unsigned>::ONE)
                        + <$unsigned>::ONE,
                ) as Self::Signed
            }
        }
    };
}

// Implement for all standard integer pairs
impl_sign_mapping!(i8, u8);
impl_sign_mapping!(i16, u16);
impl_sign_mapping!(i32, u32);
impl_sign_mapping!(i64, u64);
impl_sign_mapping!(i128, u128);
impl_sign_mapping!(isize, usize);
impl_sign_mapping!(f16, f16);
impl_sign_mapping!(f32, f32);
impl_sign_mapping!(f64, f64);
impl_sign_mapping!(f128, f128);
/// A unified trait providing wrapping arithmetic operations for all numeric types
pub const trait WrapOps {
    /// Wrapping addition. Computes `self + other`, wrapping around at the boundary of the type.
    #[must_use]
    fn wrapping_add(self, other: Self) -> Self;

    /// Wrapping subtraction. Computes `self - other`, wrapping around at the boundary of the type.
    #[must_use]
    fn wrapping_sub(self, other: Self) -> Self;

    /// Wrapping multiplication. Computes `self * other`, wrapping around at the boundary of the type.
    #[must_use]
    fn wrapping_mul(self, other: Self) -> Self;
}

macro_rules! impl_wrap_ops_int {
    ($($t:ty)*) => ($(
        impl const WrapOps for $t {
            #[inline]
            fn wrapping_add(self, other: Self) -> Self {
                <$t>::wrapping_add(self, other)
            }

            #[inline]
            fn wrapping_sub(self, other: Self) -> Self {
                <$t>::wrapping_sub(self, other)
            }

            #[inline]
            fn wrapping_mul(self, other: Self) -> Self {
                <$t>::wrapping_mul(self, other)
            }
        }
    )*)
}

macro_rules! impl_wrap_ops_float {
    ($($t:ty)*) => ($(
        impl const WrapOps for $t {
            #[inline]
            fn wrapping_add(self, other: Self) -> Self {
                self + other
            }

            #[inline]
            fn wrapping_sub(self, other: Self) -> Self {
                self - other
            }

            #[inline]
            fn wrapping_mul(self, other: Self) -> Self {
                self * other
            }
        }
    )*)
}

impl_wrap_ops_int! { i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize }
impl_wrap_ops_float! {f16 f32 f64 f128}

// pub const trait Modular<Rhs = Self> {
//     type Output;
//     fn modular(&self, modulus: Rhs) -> Self::Output;
// }

// macro_rules! impl_modular_unsigned {
//     ($($t:ty),*) => {
//         $(
//             impl Modular for $t {
//                 type Output = $t;

//                 fn modular(&self, modulus: $t) -> $t {
//                     if modulus == 0 {
//                         panic!("Division by zero: modulus cannot be zero");
//                     }
//                     self % modulus
//                 }
//             }
//         )*
//     };
// }

// macro_rules! impl_modular_signed {
//     ($($t:ty),*) => {
//         $(
//             impl Modular for $t {
//                 type Output = $t;

//                 fn modular(&self, modulus: $t) -> $t {
//                     if modulus == 0 {
//                         panic!("Division by zero: modulus cannot be zero");
//                     }
//                     // Use rem_euclid to ensure positive remainder for negative numbers
//                     self.rem_euclid(modulus.abs())
//                 }
//             }
//         )*
//     };
// }

// macro_rules! impl_modular_float {
//     ($($t:ty),*) => {
//         $(
//             impl Modular for $t {
//                 type Output = $t;

//                 fn modular(&self, modulus: $t) -> $t {
//                     if modulus == 0.0 || modulus.is_nan() || self.is_nan() {
//                         panic!("Invalid modular operation: NaN or zero modulus");
//                     }
//                     // Use rem_euclid for consistent positive results
//                     self.rem_euclid(modulus.abs())
//                 }
//             }
//         )*
//     };
// }

// impl_modular_unsigned!(u8, u16, u32, u64, u128, usize, U4);
// impl_modular_signed!(i8, i16, i32, i64, i128, isize);
// impl_modular_float!(f32, f64);

/// Round a value to its nearest neighbor
pub const trait Round {
    #[must_use]
    /// Round the current value to its nearest neighbor and return the result
    fn round(self) -> Self;
}
impl const Round for f16 {
    fn round(self) -> Self {
        core::intrinsics::roundf16(self)
    }
}
impl const Round for f32 {
    fn round(self) -> Self {
        core::f32::math::round(self)
    }
}
impl const Round for f64 {
    fn round(self) -> Self {
        core::f64::math::round(self)
    }
}
impl const Round for f128 {
    fn round(self) -> Self {
        core::intrinsics::roundf128(self)
    }
}
impl const Round for u8 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for u16 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for u64 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for u32 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for u128 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for usize {
    fn round(self) -> Self {
        self
    }
}

impl const Round for i8 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for i16 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for i64 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for i32 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for i128 {
    fn round(self) -> Self {
        self
    }
}
impl const Round for isize {
    fn round(self) -> Self {
        self
    }
}
/// Take the sqrt of the given value
pub const trait Sqrt {
    #[must_use]
    /// Take the sqrt of the given value and return the result
    fn sqrt(self) -> Self;
}
impl Sqrt for f16 {
    fn sqrt(self) -> Self {
        {
            core::intrinsics::sqrtf16(self)
        }
    }
}
impl Sqrt for f32 {
    fn sqrt(self) -> Self {
        core::f32::math::sqrt(self)
    }
}
impl Sqrt for f64 {
    fn sqrt(self) -> Self {
        core::f64::math::sqrt(self)
    }
}
impl Sqrt for f128 {
    fn sqrt(self) -> Self {
        core::intrinsics::sqrtf128(self)
    }
}

/// Take the abs of the given value
pub const trait Abs {
    #[must_use]
    /// Take the sqrt of the given value and return the result
    fn abs(self) -> Self;
}
impl const Abs for f16 {
    fn abs(self) -> Self {
        Self::from_bits(self.to_bits() & !(1 << 15))
    }
}
impl const Abs for f32 {
    fn abs(self) -> Self {
        core::intrinsics::fabsf32(self)
    }
}
impl const Abs for f64 {
    fn abs(self) -> Self {
        core::intrinsics::fabsf64(self)
    }
}
impl const Abs for f128 {
    fn abs(self) -> Self {
        Self::from_bits(self.to_bits() & !(1 << 127))
    }
}
impl const Abs for i8 {
    fn abs(self) -> Self {
        self.abs()
    }
}
impl const Abs for i16 {
    fn abs(self) -> Self {
        self.abs()
    }
}
impl const Abs for i32 {
    fn abs(self) -> Self {
        self.abs()
    }
}
impl const Abs for i64 {
    fn abs(self) -> Self {
        self.abs()
    }
}
impl const Abs for i128 {
    fn abs(self) -> Self {
        self.abs()
    }
}
impl const Abs for isize {
    fn abs(self) -> Self {
        self.abs()
    }
}
/// Find the next number that is divisible by two
pub const trait NextPowerOfTwo {
    /// Find the next number that is divisible by two
    #[must_use]
    fn next_power_of_two(self) -> Self;
}

impl const NextPowerOfTwo for u8 {
    fn next_power_of_two(self) -> Self {
        Self::next_power_of_two(self)
    }
}

impl const NextPowerOfTwo for u16 {
    fn next_power_of_two(self) -> Self {
        Self::next_power_of_two(self)
    }
}

impl const NextPowerOfTwo for u32 {
    fn next_power_of_two(self) -> Self {
        Self::next_power_of_two(self)
    }
}

impl const NextPowerOfTwo for u64 {
    fn next_power_of_two(self) -> Self {
        Self::next_power_of_two(self)
    }
}

impl const NextPowerOfTwo for u128 {
    fn next_power_of_two(self) -> Self {
        Self::next_power_of_two(self)
    }
}

impl const NextPowerOfTwo for usize {
    fn next_power_of_two(self) -> Self {
        Self::next_power_of_two(self)
    }
}

impl const NextPowerOfTwo for i8 {
    fn next_power_of_two(self) -> Self {
        self.unsigned_abs().next_power_of_two() as Self
    }
}

impl const NextPowerOfTwo for i16 {
    fn next_power_of_two(self) -> Self {
        self.unsigned_abs().next_power_of_two() as Self
    }
}

impl const NextPowerOfTwo for i32 {
    fn next_power_of_two(self) -> Self {
        self.unsigned_abs().next_power_of_two() as Self
    }
}

impl const NextPowerOfTwo for i64 {
    fn next_power_of_two(self) -> Self {
        self.unsigned_abs().next_power_of_two() as Self
    }
}

impl const NextPowerOfTwo for i128 {
    fn next_power_of_two(self) -> Self {
        self.unsigned_abs().next_power_of_two() as Self
    }
}

impl const NextPowerOfTwo for isize {
    fn next_power_of_two(self) -> Self {
        self.unsigned_abs().next_power_of_two() as Self
    }
}

impl NextPowerOfTwo for f16 {
    fn next_power_of_two(self) -> Self {
        if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        }
    }
}
impl NextPowerOfTwo for f32 {
    fn next_power_of_two(self) -> Self {
        if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        }
    }
}

impl NextPowerOfTwo for f64 {
    fn next_power_of_two(self) -> Self {
        if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        }
    }
}
impl NextPowerOfTwo for f128 {
    fn next_power_of_two(self) -> Self {
        if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        }
    }
}

/// Find the next number that is a power of two and return both the value and the exponent
pub const trait NextPowerOfTwoWithExponent {
    /// Find the next power of two and return (2^x, x)
    #[must_use]
    fn next_power_of_two_with_exponent(self) -> (Self, Self)
    where
        Self: core::marker::Sized;
}

impl const NextPowerOfTwoWithExponent for u8 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = Self::next_power_of_two(self);
        let exponent = power.trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for u16 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = Self::next_power_of_two(self);
        let exponent = power.trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for u32 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = Self::next_power_of_two(self);
        let exponent = power.trailing_zeros();
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for u64 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = Self::next_power_of_two(self);
        let exponent = power.trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for u128 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = Self::next_power_of_two(self);
        let exponent = power.trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for usize {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = Self::next_power_of_two(self);
        let exponent = power.trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for i8 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = self.unsigned_abs().next_power_of_two() as Self;
        let exponent = power.unsigned_abs().trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for i16 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = self.unsigned_abs().next_power_of_two() as Self;
        let exponent = power.unsigned_abs().trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for i32 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = self.unsigned_abs().next_power_of_two() as Self;
        let exponent = power.unsigned_abs().trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for i64 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = self.unsigned_abs().next_power_of_two() as Self;
        let exponent = power.unsigned_abs().trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for i128 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = self.unsigned_abs().next_power_of_two() as Self;
        let exponent = power.unsigned_abs().trailing_zeros() as Self;
        (power, exponent)
    }
}

impl const NextPowerOfTwoWithExponent for isize {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = self.unsigned_abs().next_power_of_two() as Self;
        let exponent = power.unsigned_abs().trailing_zeros() as Self;
        (power, exponent)
    }
}

impl NextPowerOfTwoWithExponent for f16 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        };
        let exponent = power.log2();
        (power, exponent)
    }
}

impl NextPowerOfTwoWithExponent for f32 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        };
        let exponent = power.log2();
        (power, exponent)
    }
}

impl NextPowerOfTwoWithExponent for f64 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        };
        let exponent = power.log2();
        (power, exponent)
    }
}

impl NextPowerOfTwoWithExponent for f128 {
    fn next_power_of_two_with_exponent(self) -> (Self, Self) {
        let power = if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        };
        let exponent = power.log2();
        (power, exponent)
    }
}
/// Find the exponent x where 2^x is the next power of two
pub const trait NextPowerOfTwoExponent {
    /// Find the exponent x where 2^x is the next power of two
    #[must_use]
    fn next_power_of_two_exponent(self) -> Self;
}

impl const NextPowerOfTwoExponent for u8 {
    fn next_power_of_two_exponent(self) -> Self {
        Self::next_power_of_two(self).trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for u16 {
    fn next_power_of_two_exponent(self) -> Self {
        Self::next_power_of_two(self).trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for u32 {
    fn next_power_of_two_exponent(self) -> Self {
        Self::next_power_of_two(self).trailing_zeros()
    }
}

impl const NextPowerOfTwoExponent for u64 {
    fn next_power_of_two_exponent(self) -> Self {
        Self::next_power_of_two(self).trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for u128 {
    fn next_power_of_two_exponent(self) -> Self {
        Self::next_power_of_two(self).trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for usize {
    fn next_power_of_two_exponent(self) -> Self {
        Self::next_power_of_two(self).trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for i8 {
    fn next_power_of_two_exponent(self) -> Self {
        self.unsigned_abs().next_power_of_two().trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for i16 {
    fn next_power_of_two_exponent(self) -> Self {
        self.unsigned_abs().next_power_of_two().trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for i32 {
    fn next_power_of_two_exponent(self) -> Self {
        self.unsigned_abs().next_power_of_two().trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for i64 {
    fn next_power_of_two_exponent(self) -> Self {
        self.unsigned_abs().next_power_of_two().trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for i128 {
    fn next_power_of_two_exponent(self) -> Self {
        self.unsigned_abs().next_power_of_two().trailing_zeros() as Self
    }
}

impl const NextPowerOfTwoExponent for isize {
    fn next_power_of_two_exponent(self) -> Self {
        self.unsigned_abs().next_power_of_two().trailing_zeros() as Self
    }
}

impl NextPowerOfTwoExponent for f16 {
    fn next_power_of_two_exponent(self) -> Self {
        let power = if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        };
        power.log2()
    }
}

impl NextPowerOfTwoExponent for f32 {
    fn next_power_of_two_exponent(self) -> Self {
        let power = if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        };
        power.log2()
    }
}

impl NextPowerOfTwoExponent for f64 {
    fn next_power_of_two_exponent(self) -> Self {
        let power = if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        };
        power.log2()
    }
}

impl NextPowerOfTwoExponent for f128 {
    fn next_power_of_two_exponent(self) -> Self {
        let power = if self <= 1.0 {
            1.0
        } else {
            self.log2().ceil().exp2()
        };
        power.log2()
    }
}

/// Calculate what 2^x will result in the given value
pub const trait Log2 {
    /// Calculate what 2^x will result in the given value
    #[must_use]
    fn log2(self) -> Self;
}

// TODO: Implement Log2 for all U and I types

impl Log2 for f16 {
    fn log2(self) -> Self {
        core::intrinsics::log2f16(self)
    }
}
impl Log2 for f32 {
    fn log2(self) -> Self {
        core::intrinsics::log2f32(self)
    }
}

impl Log2 for f64 {
    fn log2(self) -> Self {
        core::intrinsics::log2f64(self)
    }
}
impl Log2 for f128 {
    fn log2(self) -> Self {
        core::intrinsics::log2f128(self)
    }
}

/// Calculate what 10^x will result in the given value
pub const trait Log10 {
    /// Calculate what 10^x will result in the given value
    #[must_use]
    fn log10(self) -> Self;
}

// TODO: Implement Log10 for all U and I types

impl Log10 for f16 {
    fn log10(self) -> Self {
        core::intrinsics::log10f16(self)
    }
}
impl Log10 for f32 {
    fn log10(self) -> Self {
        core::intrinsics::log10f32(self)
    }
}

impl Log10 for f64 {
    fn log10(self) -> Self {
        core::intrinsics::log10f64(self)
    }
}
impl Log10 for f128 {
    fn log10(self) -> Self {
        core::intrinsics::log10f128(self)
    }
}

/// Calculate what e^x will result in the given value
pub const trait Log {
    /// Calculate what e^x will result in the given value
    #[must_use]
    fn log(self) -> Self;
}

// TODO: Implement Log for all U and I types

impl Log for f16 {
    fn log(self) -> Self {
        core::intrinsics::logf16(self)
    }
}
impl Log for f32 {
    fn log(self) -> Self {
        core::intrinsics::logf32(self)
    }
}

impl Log for f64 {
    fn log(self) -> Self {
        core::intrinsics::logf64(self)
    }
}
impl Log for f128 {
    fn log(self) -> Self {
        core::intrinsics::logf128(self)
    }
}

/// Calculate 2^x
pub const trait Exp2 {
    ///  Calculate 2^x
    #[must_use]
    fn exp2(self) -> Self;
}

// TODO: Implement Exp for all U and I types

impl Exp2 for f16 {
    fn exp2(self) -> Self {
        core::intrinsics::exp2f16(self)
    }
}
impl Exp2 for f32 {
    fn exp2(self) -> Self {
        core::intrinsics::exp2f32(self)
    }
}

impl Exp2 for f64 {
    fn exp2(self) -> Self {
        core::intrinsics::exp2f64(self)
    }
}
impl Exp2 for f128 {
    fn exp2(self) -> Self {
        core::intrinsics::exp2f128(self)
    }
}

/// ¯\_(ツ)_/¯
pub const trait Fract {
    /// ¯\_(ツ)_/¯
    #[must_use]
    fn fract(self) -> Self;
}

// TODO: Implement Fract for all U and I types

impl Fract for f16 {
    fn fract(self) -> Self {
        self - self.trunc()
    }
}
impl Fract for f32 {
    fn fract(self) -> Self {
        core::f32::math::fract(self)
    }
}

impl Fract for f64 {
    fn fract(self) -> Self {
        core::f64::math::fract(self)
    }
}
impl Fract for f128 {
    fn fract(self) -> Self {
        self - self.trunc()
    }
}

/// ¯\_(ツ)_/¯
pub const trait Trunc {
    /// ¯\_(ツ)_/¯
    #[must_use]
    fn tunc(self) -> Self;
}

// TODO: Implement Fract for all U and I types

impl Trunc for f16 {
    fn tunc(self) -> Self {
        core::intrinsics::truncf16(self)
    }
}
impl Trunc for f32 {
    fn tunc(self) -> Self {
        core::intrinsics::truncf32(self)
    }
}

impl Trunc for f64 {
    fn tunc(self) -> Self {
        core::intrinsics::truncf64(self)
    }
}
impl Trunc for f128 {
    fn tunc(self) -> Self {
        core::intrinsics::truncf128(self)
    }
}

/// Saturating addition
pub const trait SaturatingAdd<Rhs = Self> {
    /// The resulting type after applying saturating addition
    type Output;

    #[must_use]
    /// Add two values, saturating at the numeric bounds instead of overflowing
    fn saturating_add(self, rhs: Rhs) -> Self::Output;
}

impl const SaturatingAdd for i8 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for i16 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for i32 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for i64 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for i128 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for isize {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for u8 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for u16 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for u32 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for u64 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for u128 {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

impl const SaturatingAdd for usize {
    type Output = Self;
    fn saturating_add(self, rhs: Self) -> Self::Output {
        self.saturating_add(rhs)
    }
}

/// Saturating subtraction
pub const trait SaturatingSub<Rhs = Self> {
    /// The resulting type after applying saturating subtraction
    type Output;

    #[must_use]
    /// Subtract two values, saturating at the numeric bounds instead of overflowing
    fn saturating_sub(self, rhs: Rhs) -> Self::Output;
}

impl const SaturatingSub for i8 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for i16 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for i32 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for i64 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for i128 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for isize {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for u8 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for u16 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for u32 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for u64 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for u128 {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

impl const SaturatingSub for usize {
    type Output = Self;
    fn saturating_sub(self, rhs: Self) -> Self::Output {
        self.saturating_sub(rhs)
    }
}

/// Saturating multiplication
pub const trait SaturatingMul<Rhs = Self> {
    /// The resulting type after applying saturating multiplication
    type Output;

    #[must_use]
    /// Multiply two values, saturating at the numeric bounds instead of overflowing
    fn saturating_mul(self, rhs: Rhs) -> Self::Output;
}

impl const SaturatingMul for i8 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for i16 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for i32 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for i64 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for i128 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for isize {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for u8 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for u16 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for u32 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for u64 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for u128 {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

impl const SaturatingMul for usize {
    type Output = Self;
    fn saturating_mul(self, rhs: Self) -> Self::Output {
        self.saturating_mul(rhs)
    }
}

/// Saturating absolute value
pub const trait SaturatingAbs {
    /// The resulting type after applying saturating absolute value
    type Output;

    #[must_use]
    /// Take the absolute value, saturating at the numeric bounds instead of overflowing
    fn saturating_abs(self) -> Self::Output;
}

impl const SaturatingAbs for i8 {
    type Output = Self;
    fn saturating_abs(self) -> Self::Output {
        self.saturating_abs()
    }
}

impl const SaturatingAbs for i16 {
    type Output = Self;
    fn saturating_abs(self) -> Self::Output {
        self.saturating_abs()
    }
}

impl const SaturatingAbs for i32 {
    type Output = Self;
    fn saturating_abs(self) -> Self::Output {
        self.saturating_abs()
    }
}

impl const SaturatingAbs for i64 {
    type Output = Self;
    fn saturating_abs(self) -> Self::Output {
        self.saturating_abs()
    }
}

impl const SaturatingAbs for i128 {
    type Output = Self;
    fn saturating_abs(self) -> Self::Output {
        self.saturating_abs()
    }
}

impl const SaturatingAbs for isize {
    type Output = Self;
    fn saturating_abs(self) -> Self::Output {
        self.saturating_abs()
    }
}

/// Saturating negation
pub const trait SaturatingNeg {
    /// The resulting type after applying saturating negation
    type Output;

    #[must_use]
    /// Negate the value, saturating at the numeric bounds instead of overflowing
    fn saturating_neg(self) -> Self::Output;
}

impl const SaturatingNeg for i8 {
    type Output = Self;
    fn saturating_neg(self) -> Self::Output {
        self.saturating_neg()
    }
}

impl const SaturatingNeg for i16 {
    type Output = Self;
    fn saturating_neg(self) -> Self::Output {
        self.saturating_neg()
    }
}

impl const SaturatingNeg for i32 {
    type Output = Self;
    fn saturating_neg(self) -> Self::Output {
        self.saturating_neg()
    }
}

impl const SaturatingNeg for i64 {
    type Output = Self;
    fn saturating_neg(self) -> Self::Output {
        self.saturating_neg()
    }
}

impl const SaturatingNeg for i128 {
    type Output = Self;
    fn saturating_neg(self) -> Self::Output {
        self.saturating_neg()
    }
}

impl const SaturatingNeg for isize {
    type Output = Self;
    fn saturating_neg(self) -> Self::Output {
        self.saturating_neg()
    }
}
/// Check if a number is a power of two
pub const trait IsPowerOfTwo {
    /// Returns true if the number is a power of two
    #[must_use]
    #[allow(clippy::wrong_self_convention)]
    fn is_power_of_two(self) -> bool;
}

impl const IsPowerOfTwo for u8 {
    fn is_power_of_two(self) -> bool {
        Self::is_power_of_two(self)
    }
}

impl const IsPowerOfTwo for u16 {
    fn is_power_of_two(self) -> bool {
        Self::is_power_of_two(self)
    }
}

impl const IsPowerOfTwo for u32 {
    fn is_power_of_two(self) -> bool {
        Self::is_power_of_two(self)
    }
}

impl const IsPowerOfTwo for u64 {
    fn is_power_of_two(self) -> bool {
        Self::is_power_of_two(self)
    }
}

impl const IsPowerOfTwo for u128 {
    fn is_power_of_two(self) -> bool {
        Self::is_power_of_two(self)
    }
}

impl const IsPowerOfTwo for usize {
    fn is_power_of_two(self) -> bool {
        Self::is_power_of_two(self)
    }
}

impl const IsPowerOfTwo for i8 {
    fn is_power_of_two(self) -> bool {
        self > 0 && self.unsigned_abs().is_power_of_two()
    }
}

impl const IsPowerOfTwo for i16 {
    fn is_power_of_two(self) -> bool {
        self > 0 && self.unsigned_abs().is_power_of_two()
    }
}

impl const IsPowerOfTwo for i32 {
    fn is_power_of_two(self) -> bool {
        self > 0 && self.unsigned_abs().is_power_of_two()
    }
}

impl const IsPowerOfTwo for i64 {
    fn is_power_of_two(self) -> bool {
        self > 0 && self.unsigned_abs().is_power_of_two()
    }
}

impl const IsPowerOfTwo for i128 {
    fn is_power_of_two(self) -> bool {
        self > 0 && self.unsigned_abs().is_power_of_two()
    }
}

impl const IsPowerOfTwo for isize {
    fn is_power_of_two(self) -> bool {
        self > 0 && self.unsigned_abs().is_power_of_two()
    }
}

impl IsPowerOfTwo for f16 {
    #[allow(clippy::float_cmp)]
    fn is_power_of_two(self) -> bool {
        self > 0.0 && self.is_finite() && self.log2().fract() == 0.0
    }
}

impl IsPowerOfTwo for f32 {
    fn is_power_of_two(self) -> bool {
        self > 0.0 && self.is_finite() && self.log2().fract() == 0.0
    }
}

impl IsPowerOfTwo for f64 {
    fn is_power_of_two(self) -> bool {
        self > 0.0 && self.is_finite() && self.log2().fract() == 0.0
    }
}

impl IsPowerOfTwo for f128 {
    #[allow(clippy::float_cmp)]
    fn is_power_of_two(self) -> bool {
        self > 0.0 && self.is_finite() && self.log2().fract() == 0.0
    }
}

/// Get the previous power of two (rounding down)
pub const trait PrevPowerOfTwo {
    /// Find the previous power of two (the largest power of two less than or equal to self)
    #[must_use]
    fn prev_power_of_two(self) -> Self;
}

impl const PrevPowerOfTwo for u8 {
    fn prev_power_of_two(self) -> Self {
        if self == 0 {
            0
        } else {
            1 << (Self::BITS - 1 - self.leading_zeros())
        }
    }
}

impl const PrevPowerOfTwo for u16 {
    fn prev_power_of_two(self) -> Self {
        if self == 0 {
            0
        } else {
            1 << (Self::BITS - 1 - self.leading_zeros())
        }
    }
}

impl const PrevPowerOfTwo for u32 {
    fn prev_power_of_two(self) -> Self {
        if self == 0 {
            0
        } else {
            1 << (Self::BITS - 1 - self.leading_zeros())
        }
    }
}

impl const PrevPowerOfTwo for u64 {
    fn prev_power_of_two(self) -> Self {
        if self == 0 {
            0
        } else {
            1 << (Self::BITS - 1 - self.leading_zeros())
        }
    }
}

impl const PrevPowerOfTwo for u128 {
    fn prev_power_of_two(self) -> Self {
        if self == 0 {
            0
        } else {
            1 << (Self::BITS - 1 - self.leading_zeros())
        }
    }
}

impl const PrevPowerOfTwo for usize {
    fn prev_power_of_two(self) -> Self {
        if self == 0 {
            0
        } else {
            1 << (Self::BITS - 1 - self.leading_zeros())
        }
    }
}

impl const PrevPowerOfTwo for i8 {
    fn prev_power_of_two(self) -> Self {
        if self <= 0 {
            0
        } else {
            self.unsigned_abs().prev_power_of_two() as Self
        }
    }
}

impl const PrevPowerOfTwo for i16 {
    fn prev_power_of_two(self) -> Self {
        if self <= 0 {
            0
        } else {
            self.unsigned_abs().prev_power_of_two() as Self
        }
    }
}

impl const PrevPowerOfTwo for i32 {
    fn prev_power_of_two(self) -> Self {
        if self <= 0 {
            0
        } else {
            self.unsigned_abs().prev_power_of_two() as Self
        }
    }
}

impl const PrevPowerOfTwo for i64 {
    fn prev_power_of_two(self) -> Self {
        if self <= 0 {
            0
        } else {
            self.unsigned_abs().prev_power_of_two() as Self
        }
    }
}

impl const PrevPowerOfTwo for i128 {
    fn prev_power_of_two(self) -> Self {
        if self <= 0 {
            0
        } else {
            self.unsigned_abs().prev_power_of_two() as Self
        }
    }
}

impl const PrevPowerOfTwo for isize {
    fn prev_power_of_two(self) -> Self {
        if self <= 0 {
            0
        } else {
            self.unsigned_abs().prev_power_of_two() as Self
        }
    }
}

impl PrevPowerOfTwo for f16 {
    fn prev_power_of_two(self) -> Self {
        if self <= 1.0 {
            1.0
        } else {
            self.log2().floor().exp2()
        }
    }
}

impl PrevPowerOfTwo for f32 {
    fn prev_power_of_two(self) -> Self {
        if self <= 1.0 {
            1.0
        } else {
            self.log2().floor().exp2()
        }
    }
}

impl PrevPowerOfTwo for f64 {
    fn prev_power_of_two(self) -> Self {
        if self <= 1.0 {
            1.0
        } else {
            self.log2().floor().exp2()
        }
    }
}

impl PrevPowerOfTwo for f128 {
    fn prev_power_of_two(self) -> Self {
        if self <= 1.0 {
            1.0
        } else {
            self.log2().floor().exp2()
        }
    }
}
/// Round down the current number
pub const trait Floor {
    #[must_use]
    /// Round down the current number
    fn floor(self) -> Self;
}

/// Round up the current number
pub const trait Ceil {
    #[must_use]
    /// Round up the current number
    fn ceil(self) -> Self;
}

impl const Floor for f16 {
    fn floor(self) -> Self {
        core::intrinsics::floorf16(self)
    }
}
impl const Ceil for f16 {
    fn ceil(self) -> Self {
        core::intrinsics::ceilf16(self)
    }
}

impl const Floor for f32 {
    fn floor(self) -> Self {
        core::f32::math::floor(self)
    }
}
impl const Ceil for f32 {
    fn ceil(self) -> Self {
        core::f32::math::ceil(self)
    }
}

impl const Floor for f64 {
    fn floor(self) -> Self {
        core::f64::math::floor(self)
    }
}
impl const Ceil for f64 {
    fn ceil(self) -> Self {
        core::f64::math::ceil(self)
    }
}

impl const Floor for f128 {
    fn floor(self) -> Self {
        core::intrinsics::floorf128(self)
    }
}
impl const Ceil for f128 {
    fn ceil(self) -> Self {
        core::intrinsics::ceilf128(self)
    }
}

macro_rules! impl_int {
    ($($t:ty),*) => {
        $(
            impl const Floor for $t {
                fn floor(self) -> Self {
                    self
                }
            }
            impl const Ceil for $t {
                fn ceil(self) -> Self {
                    self
                }
            }
        )*
    };
}

impl_int!(i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128, usize);

/// Trait providing trigonometric functions
pub const trait MathRotation {
    /// Computes the sine of self (in radians)
    #[must_use]
    fn sin(self) -> Self;

    /// Computes the cosine of self (in radians)
    #[must_use]
    fn cos(self) -> Self;
}

impl MathRotation for f16 {
    fn sin(self) -> Self {
        core::intrinsics::sinf16(self)
    }
    fn cos(self) -> Self {
        core::intrinsics::cosf16(self)
    }
}

impl MathRotation for f32 {
    fn sin(self) -> Self {
        core::intrinsics::sinf32(self)
    }
    fn cos(self) -> Self {
        core::intrinsics::cosf32(self)
    }
}

impl MathRotation for f64 {
    fn sin(self) -> Self {
        core::intrinsics::sinf64(self)
    }
    fn cos(self) -> Self {
        core::intrinsics::cosf64(self)
    }
}

impl MathRotation for f128 {
    fn sin(self) -> Self {
        core::intrinsics::sinf128(self)
    }
    fn cos(self) -> Self {
        core::intrinsics::cosf128(self)
    }
}

/// Trait providing fused multiply-add operation
pub const trait MulAdd {
    /// Computes `(self * a) + b` with only one rounding error if possible
    #[must_use]
    fn mul_add(self, a: Self, b: Self) -> Self;
}

impl const MulAdd for f16 {
    fn mul_add(self, a: Self, b: Self) -> Self {
        core::intrinsics::fmaf16(self, a, b)
    }
}

impl const MulAdd for f32 {
    fn mul_add(self, a: Self, b: Self) -> Self {
        core::f32::math::mul_add(self, a, b)
    }
}

impl const MulAdd for f64 {
    fn mul_add(self, a: Self, b: Self) -> Self {
        core::f64::math::mul_add(self, a, b)
    }
}

impl const MulAdd for f128 {
    fn mul_add(self, a: Self, b: Self) -> Self {
        core::intrinsics::fmaf128(self, a, b)
    }
}
macro_rules! impl_mul_add_plain {
    ($($t:ty),* $(,)?) => {
        $(
            impl const MulAdd for $t {
                #[inline(always)]
                fn mul_add(self, a: Self, b: Self) -> Self {
                    self * a + b
                }
            }
        )*
    };
}

impl_mul_add_plain!(
    i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128, usize,
);

/// Clamp a value between a minimum and maximum bound
///
/// The function isn't called `clamp` for compatibility with `core::ops::Ord` which numbers like `core::f64` do not implement
pub const trait Clamp {
    /// Restricts a value to be within a specified range [min, max]
    #[must_use]
    fn clamped(self, min: Self, max: Self) -> Self;
}

macro_rules! impl_clamp_int {
    ($($t:ty),*) => {
        $(
            impl const Clamp for $t {
                fn clamped(self, min: Self, max: Self) -> Self {
                    if self < min {
                        min
                    } else if self > max {
                        max
                    } else {
                        self
                    }
                }
            }
        )*
    };
}

macro_rules! impl_clamp_float {
    ($($t:ty),*) => {
        $(
            impl const Clamp for $t {
                fn clamped(self, min: Self, max: Self) -> Self {
                    if self.is_nan() || min.is_nan() || max.is_nan() {
                        return self;
                    }

                    if self < min {
                        min
                    } else if self > max {
                        max
                    } else {
                        self
                    }
                }
            }
        )*
    };
}

impl_clamp_int!(i8, i16, i32, i64, i128, isize);

impl_clamp_int!(u8, u16, u32, u64, u128, usize);

impl_clamp_float!(f16, f32, f64, f128);

/// Get the hypotenuse of a value
pub const trait Hypot {
    #[must_use]
    /// Get the hypotenuse of a value
    fn hypot(self, other: Self) -> Self;
}
impl<
        T: Copy + Sqrt + core::ops::Add<Output = T> + core::ops::Mul<Output = T>,
    > Hypot for T
{
    fn hypot(self, other: Self) -> Self {
        (self * self + other * other).sqrt()
    }
}

// impl Hypot for f16 {
//     fn hypot(self, other: Self) -> Self {
//         cmath::hypotf(self as f32, other as f32) as f16
//     }
// }

// impl Hypot for f32 {
//     fn hypot(self, other: Self) -> Self {
//         #[cfg(feature = "std")]
//         return self.hypot(other);
//         #[cfg(not(feature = "std"))]
//         (self * self + other * other).sqrt()
//     }
// }

// impl Hypot for f16 {
//     fn hypot(self, other: Self) -> Self {
//         #[cfg(feature = "std")]
//         return self.hypot(other);
//         #[cfg(not(feature = "std"))]
//         (self * self + other * other).sqrt()
//     }
// }

// impl Hypot for f64 {
//     fn hypot(self, other: Self) -> Self {
//         #[cfg(feature = "std")]
//         return self.hypot(other);
//         #[cfg(not(feature = "std"))]
//         (self * self + other * other).sqrt()
//     }
// }

// impl Hypot for f128 {
//     fn hypot(self, other: Self) -> Self {
//         #[cfg(feature = "std")]
//         return self.hypot(other);
//         #[cfg(not(feature = "std"))]
//         (self * self + other * other).sqrt()
//     }
// }

/// Returns the exp or exp2 of a value
pub trait Exp {
    #[must_use]
    /// Returns e^self.
    fn exp(self) -> Self;
}
impl Exp for f16 {
    fn exp(self) -> Self {
        core::intrinsics::expf16(self)
    }
}

impl Exp for f32 {
    fn exp(self) -> Self {
        core::intrinsics::expf32(self)
    }
}

impl Exp for f64 {
    fn exp(self) -> Self {
        core::intrinsics::expf64(self)
    }
}

impl Exp for f128 {
    fn exp(self) -> Self {
        core::intrinsics::expf128(self)
    }
}