unit-intervals 0.1.0

Constrained f32/f64 wrapper types for normalized [0, 1] and [-1, 1] values.
Documentation
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
use crate::UnitIntervalFloat;
use core::{
    cmp::Ordering,
    error::Error,
    fmt,
    ops::{Add, Deref, Div, Mul, Neg, Rem, Sub},
};

/// A floating-point value constrained to the closed unit interval `[0, 1]`.
///
/// `UnitInterval` is useful for normalized values such as opacity, progress,
/// ratios, blend factors, and percentages represented as fractions.
///
/// The default backing type is `f32`; use `UnitInterval<f64>` when you need a
/// wider float.
///
/// # Examples
///
/// ```
/// use unit_intervals::UnitInterval;
///
/// let progress = UnitInterval::new(0.75).unwrap();
///
/// assert_eq!(progress.get(), 0.75);
/// assert_eq!(UnitInterval::new(1.25), None);
/// ```
#[cfg_attr(
    feature = "rkyv",
    derive(::rkyv::Archive, ::rkyv::Serialize),
    rkyv(crate = ::rkyv)
)]
#[derive(Debug, Copy, Clone, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct UnitInterval<T = f32>(T);

/// Error returned when converting an out-of-range value into a [`UnitInterval`].
///
/// # Examples
///
/// ```
/// use unit_intervals::UnitInterval;
///
/// let err = UnitInterval::<f32>::try_from(2.0).unwrap_err();
///
/// assert_eq!(err.to_string(), "value is outside the unit interval");
/// ```
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct UnitIntervalError;

impl fmt::Display for UnitIntervalError {
    #[inline]
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("value is outside the unit interval")
    }
}

impl Error for UnitIntervalError {}

#[cfg(feature = "rkyv")]
#[cfg_attr(docsrs, doc(cfg(feature = "rkyv")))]
mod rkyv {
    use super::*;
    use ::rkyv::{
        Archive, Deserialize,
        rancor::{Fallible, Source, fail},
    };

    impl<T, D> Deserialize<UnitInterval<T>, D> for ArchivedUnitInterval<T>
    where
        T: Archive + UnitIntervalFloat,
        T::Archived: Deserialize<T, D>,
        D: Fallible + ?Sized,
        D::Error: Source,
    {
        #[inline]
        fn deserialize(&self, deserializer: &mut D) -> Result<UnitInterval<T>, D::Error> {
            let value = self.0.deserialize(deserializer)?;

            if let Some(value) = UnitInterval::new(value) {
                Ok(value)
            } else {
                fail!(UnitIntervalError);
            }
        }
    }
}

#[cfg(feature = "serde")]
#[cfg_attr(docsrs, doc(cfg(feature = "serde")))]
mod serde {
    use super::*;
    use ::serde::{Deserialize, Deserializer, Serialize, Serializer, de};

    impl<T: Serialize> Serialize for UnitInterval<T> {
        #[inline]
        fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
            self.0.serialize(serializer)
        }
    }

    impl<'de, T> Deserialize<'de> for UnitInterval<T>
    where
        T: UnitIntervalFloat + Deserialize<'de>,
    {
        #[inline]
        fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
            // Keep deserialization on the same invariant-preserving path as
            // construction from a raw float. Serialization is intentionally
            // transparent, so the data format only stores the inner value and
            // cannot encode whether that value came from a previously checked
            // `UnitInterval`. Treating decoded input as trusted wrapper state
            // would let out-of-range values and `NaN` bypass the type's public
            // contract. Decoding the backing value first and then routing it
            // through `new` gives every serde format the same behavior as
            // `TryFrom<T>`: valid values reconstruct the wrapper, and invalid
            // values become ordinary deserialization errors.
            let value = T::deserialize(deserializer)?;

            Self::new(value).ok_or_else(|| de::Error::custom(UnitIntervalError))
        }
    }
}

#[cfg(feature = "bytemuck")]
#[cfg_attr(docsrs, doc(cfg(feature = "bytemuck")))]
mod bytemuck {
    use super::*;

    unsafe impl<T> ::bytemuck::Zeroable for UnitInterval<T> where
        T: UnitIntervalFloat + ::bytemuck::Zeroable
    {
    }

    unsafe impl<T> ::bytemuck::NoUninit for UnitInterval<T> where
        T: UnitIntervalFloat + ::bytemuck::NoUninit
    {
    }

    unsafe impl<T> ::bytemuck::CheckedBitPattern for UnitInterval<T>
    where
        T: UnitIntervalFloat + ::bytemuck::AnyBitPattern,
    {
        type Bits = T;

        #[inline]
        fn is_valid_bit_pattern(bits: &Self::Bits) -> bool {
            UnitInterval::contains(*bits)
        }
    }
}

#[cfg(feature = "arbitrary")]
#[cfg_attr(docsrs, doc(cfg(feature = "arbitrary")))]
mod arbitrary {
    use super::*;
    use ::arbitrary::{Arbitrary, Result, Unstructured};

    macro_rules! impl_arbitrary_unit_interval {
        ($float:ty, $unsigned:ty) => {
            impl<'a> Arbitrary<'a> for UnitInterval<$float> {
                #[inline]
                fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
                    let raw = <$unsigned as Arbitrary<'a>>::arbitrary(u)?;
                    let value = raw as $float / <$unsigned>::MAX as $float;

                    Ok(Self::from_inner(value))
                }

                #[inline]
                fn size_hint(depth: usize) -> (usize, Option<usize>) {
                    <$unsigned as Arbitrary<'a>>::size_hint(depth)
                }
            }
        };
    }

    impl_arbitrary_unit_interval!(f32, u32);
    impl_arbitrary_unit_interval!(f64, u64);
}

#[cfg(feature = "num-traits")]
#[cfg_attr(docsrs, doc(cfg(feature = "num-traits")))]
mod num_traits {
    use super::*;
    use ::num_traits::{
        AsPrimitive, Bounded, ConstOne, FromPrimitive, NumCast, One, Pow, ToBytes, ToPrimitive,
        ops::{checked::CheckedMul, saturating::SaturatingMul},
    };

    macro_rules! impl_num_traits_unit_interval {
        ($float:ty) => {
            impl ToPrimitive for UnitInterval<$float> {
                #[inline]
                fn to_isize(&self) -> Option<isize> {
                    self.0.to_isize()
                }

                #[inline]
                fn to_i8(&self) -> Option<i8> {
                    self.0.to_i8()
                }

                #[inline]
                fn to_i16(&self) -> Option<i16> {
                    self.0.to_i16()
                }

                #[inline]
                fn to_i32(&self) -> Option<i32> {
                    self.0.to_i32()
                }

                #[inline]
                fn to_i64(&self) -> Option<i64> {
                    self.0.to_i64()
                }

                #[inline]
                fn to_i128(&self) -> Option<i128> {
                    self.0.to_i128()
                }

                #[inline]
                fn to_usize(&self) -> Option<usize> {
                    self.0.to_usize()
                }

                #[inline]
                fn to_u8(&self) -> Option<u8> {
                    self.0.to_u8()
                }

                #[inline]
                fn to_u16(&self) -> Option<u16> {
                    self.0.to_u16()
                }

                #[inline]
                fn to_u32(&self) -> Option<u32> {
                    self.0.to_u32()
                }

                #[inline]
                fn to_u64(&self) -> Option<u64> {
                    self.0.to_u64()
                }

                #[inline]
                fn to_u128(&self) -> Option<u128> {
                    self.0.to_u128()
                }

                #[inline]
                fn to_f32(&self) -> Option<f32> {
                    self.0.to_f32()
                }

                #[inline]
                fn to_f64(&self) -> Option<f64> {
                    self.0.to_f64()
                }
            }

            impl FromPrimitive for UnitInterval<$float> {
                #[inline]
                fn from_i64(n: i64) -> Option<Self> {
                    <$float as FromPrimitive>::from_i64(n).and_then(Self::new)
                }

                #[inline]
                fn from_u64(n: u64) -> Option<Self> {
                    <$float as FromPrimitive>::from_u64(n).and_then(Self::new)
                }

                #[inline]
                fn from_f32(n: f32) -> Option<Self> {
                    <$float as FromPrimitive>::from_f32(n).and_then(Self::new)
                }

                #[inline]
                fn from_f64(n: f64) -> Option<Self> {
                    <$float as FromPrimitive>::from_f64(n).and_then(Self::new)
                }
            }

            impl NumCast for UnitInterval<$float> {
                #[inline]
                fn from<T: ToPrimitive>(n: T) -> Option<Self> {
                    <$float as NumCast>::from(n).and_then(Self::new)
                }
            }

            impl One for UnitInterval<$float> {
                #[inline]
                fn one() -> Self {
                    Self::ONE
                }

                #[inline]
                fn is_one(&self) -> bool {
                    UnitInterval::is_one(*self)
                }
            }

            impl ConstOne for UnitInterval<$float> {
                const ONE: Self = Self::ONE;
            }

            impl Bounded for UnitInterval<$float> {
                #[inline]
                fn min_value() -> Self {
                    Self::ZERO
                }

                #[inline]
                fn max_value() -> Self {
                    Self::ONE
                }
            }

            impl ToBytes for UnitInterval<$float> {
                type Bytes = <$float as ToBytes>::Bytes;

                #[inline]
                fn to_be_bytes(&self) -> Self::Bytes {
                    self.0.to_be_bytes()
                }

                #[inline]
                fn to_le_bytes(&self) -> Self::Bytes {
                    self.0.to_le_bytes()
                }

                #[inline]
                fn to_ne_bytes(&self) -> Self::Bytes {
                    self.0.to_ne_bytes()
                }
            }

            impl CheckedMul for UnitInterval<$float> {
                #[inline]
                fn checked_mul(&self, v: &Self) -> Option<Self> {
                    Some(*self * *v)
                }
            }

            impl SaturatingMul for UnitInterval<$float> {
                #[inline]
                fn saturating_mul(&self, v: &Self) -> Self {
                    *self * *v
                }
            }
        };
    }

    macro_rules! impl_pow_unit_interval {
        ($rhs:ty) => {
            impl<T: UnitIntervalFloat> Pow<$rhs> for UnitInterval<T> {
                type Output = Self;

                #[inline]
                fn pow(self, rhs: $rhs) -> Self::Output {
                    pow_unit_interval(self, rhs as usize)
                }
            }

            impl<T: UnitIntervalFloat> Pow<&$rhs> for UnitInterval<T> {
                type Output = Self;

                #[inline]
                fn pow(self, rhs: &$rhs) -> Self::Output {
                    pow_unit_interval(self, *rhs as usize)
                }
            }

            impl<T: UnitIntervalFloat> Pow<$rhs> for &UnitInterval<T> {
                type Output = UnitInterval<T>;

                #[inline]
                fn pow(self, rhs: $rhs) -> Self::Output {
                    pow_unit_interval(*self, rhs as usize)
                }
            }

            impl<T: UnitIntervalFloat> Pow<&$rhs> for &UnitInterval<T> {
                type Output = UnitInterval<T>;

                #[inline]
                fn pow(self, rhs: &$rhs) -> Self::Output {
                    pow_unit_interval(*self, *rhs as usize)
                }
            }
        };
    }

    macro_rules! impl_as_primitive_unit_interval {
        ($float:ty => $($target:ty),+ $(,)?) => {
            $(
                impl AsPrimitive<$target> for UnitInterval<$float> {
                    #[inline]
                    fn as_(self) -> $target {
                        self.0 as $target
                    }
                }
            )+
        };
    }

    impl_num_traits_unit_interval!(f32);
    impl_num_traits_unit_interval!(f64);
    impl_pow_unit_interval!(u8);
    impl_pow_unit_interval!(u16);
    impl_pow_unit_interval!(u32);
    impl_pow_unit_interval!(usize);

    impl_as_primitive_unit_interval!(f32 => f32, f64);
    impl_as_primitive_unit_interval!(f64 => f32, f64);

    impl AsPrimitive<UnitInterval<f32>> for UnitInterval<f32> {
        #[inline]
        fn as_(self) -> UnitInterval<f32> {
            self
        }
    }

    impl AsPrimitive<UnitInterval<f64>> for UnitInterval<f32> {
        #[inline]
        fn as_(self) -> UnitInterval<f64> {
            UnitInterval::from_inner(self.0 as f64)
        }
    }

    impl AsPrimitive<UnitInterval<f32>> for UnitInterval<f64> {
        #[inline]
        fn as_(self) -> UnitInterval<f32> {
            UnitInterval::from_inner(self.0 as f32)
        }
    }

    impl AsPrimitive<UnitInterval<f64>> for UnitInterval<f64> {
        #[inline]
        fn as_(self) -> UnitInterval<f64> {
            self
        }
    }

    #[inline]
    fn pow_unit_interval<T: UnitIntervalFloat>(
        base: UnitInterval<T>,
        exp: usize,
    ) -> UnitInterval<T> {
        let mut result = UnitInterval::ONE;
        let mut factor = base;
        let mut exp = exp;

        while exp > 0 {
            if exp & 1 == 1 {
                result = result * factor;
            }

            exp >>= 1;

            if exp > 0 {
                factor = factor * factor;
            }
        }

        result
    }
}

impl<T: UnitIntervalFloat> UnitInterval<T> {
    /// The lower bound of the unit interval.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert_eq!(UnitInterval::<f32>::ZERO.get(), 0.0);
    /// ```
    pub const ZERO: Self = Self(T::ZERO);

    /// The upper bound of the unit interval.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert_eq!(UnitInterval::<f32>::ONE.get(), 1.0);
    /// ```
    pub const ONE: Self = Self(T::ONE);

    /// The midpoint of the unit interval.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert_eq!(UnitInterval::<f32>::HALF.get(), 0.5);
    /// ```
    pub const HALF: Self = Self(T::HALF);

    /// Creates a value if `v` is inside `[0, 1]`.
    ///
    /// Returns `None` for values outside the interval and for `NaN`.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert_eq!(UnitInterval::<f32>::new(0.25).unwrap().get(), 0.25);
    /// assert_eq!(UnitInterval::<f32>::new(-0.25), None);
    /// assert_eq!(UnitInterval::<f32>::new(f32::NAN), None);
    /// ```
    #[inline(always)]
    pub fn new(v: T) -> Option<Self> {
        if Self::contains(v) {
            Some(Self::from_inner(v))
        } else {
            None
        }
    }

    /// Creates a value without checking that `v` is inside `[0, 1]`.
    ///
    /// # Safety
    ///
    /// The caller must guarantee that `v` is greater than or equal to zero,
    /// less than or equal to one, and not `NaN`.
    #[cfg(feature = "unsafe")]
    #[inline(always)]
    pub const unsafe fn new_unchecked(v: T) -> Self {
        Self(v)
    }

    /// Returns whether `v` is inside `[0, 1]`.
    ///
    /// `NaN` is not contained in the interval.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert!(UnitInterval::<f32>::contains(0.5));
    /// assert!(!UnitInterval::<f32>::contains(1.5));
    /// assert!(!UnitInterval::<f32>::contains(f32::NAN));
    /// ```
    #[inline]
    pub fn contains(v: T) -> bool {
        v >= T::ZERO && v <= T::ONE
    }

    /// Creates a value by clamping `v` into `[0, 1]`.
    ///
    /// `NaN` is treated as zero.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert_eq!(UnitInterval::<f32>::saturating(-0.25).get(), 0.0);
    /// assert_eq!(UnitInterval::<f32>::saturating(1.25).get(), 1.0);
    /// assert_eq!(UnitInterval::<f32>::saturating(f32::NAN).get(), 0.0);
    /// ```
    #[inline]
    pub fn saturating(v: T) -> Self {
        Self::from_inner(v.clamp_unit())
    }

    #[inline(always)]
    pub(crate) fn from_inner(v: T) -> Self {
        Self::assert_contains(v);
        Self(v)
    }

    #[cfg(any(test, feature = "assertions"))]
    #[inline(always)]
    fn assert_contains(v: T) {
        assert!(
            Self::contains(v),
            "UnitInterval invariant violated: value is outside [0, 1]"
        );
    }

    #[cfg(not(any(test, feature = "assertions")))]
    #[cfg_attr(docsrs, doc(cfg(feature = "assertions")))]
    #[inline(always)]
    fn assert_contains(_v: T) {}

    /// Returns the inner floating-point value.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let value = UnitInterval::new(0.25).unwrap();
    ///
    /// assert_eq!(value.get(), 0.25);
    /// ```
    #[inline(always)]
    pub const fn get(self) -> T {
        self.0
    }

    /// Consumes the wrapper and returns the inner floating-point value.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let value = UnitInterval::new(0.25).unwrap();
    ///
    /// assert_eq!(value.into_inner(), 0.25);
    /// ```
    #[inline(always)]
    pub const fn into_inner(self) -> T {
        self.0
    }

    /// Returns whether this value is exactly zero.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert!(UnitInterval::<f32>::ZERO.is_zero());
    /// assert!(!UnitInterval::<f32>::HALF.is_zero());
    /// ```
    #[inline(always)]
    pub fn is_zero(self) -> bool {
        self.0 == T::ZERO
    }

    /// Returns whether this value is exactly one.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert!(UnitInterval::<f32>::ONE.is_one());
    /// assert!(!UnitInterval::<f32>::HALF.is_one());
    /// ```
    #[inline(always)]
    pub fn is_one(self) -> bool {
        self.0 == T::ONE
    }

    /// Returns `1 - self`.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let value = UnitInterval::new(0.25).unwrap();
    ///
    /// assert_eq!(value.complement().get(), 0.75);
    /// ```
    #[inline(always)]
    pub fn complement(self) -> Self {
        Self::from_inner(T::ONE - self.0)
    }

    /// Returns the smaller of two unit interval values.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let low = UnitInterval::new(0.25).unwrap();
    /// let high = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(low.min(high), low);
    /// ```
    #[inline]
    pub fn min(self, rhs: Self) -> Self {
        if self.0 <= rhs.0 { self } else { rhs }
    }

    /// Returns the larger of two unit interval values.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let low = UnitInterval::new(0.25).unwrap();
    /// let high = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(low.max(high), high);
    /// ```
    #[inline]
    pub fn max(self, rhs: Self) -> Self {
        if self.0 >= rhs.0 { self } else { rhs }
    }

    /// Returns the midpoint between two unit interval values.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let low = UnitInterval::new(0.25).unwrap();
    /// let high = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(low.midpoint(high).get(), 0.5);
    /// ```
    #[inline]
    pub fn midpoint(self, rhs: Self) -> Self {
        Self::from_inner((self.0 + rhs.0) * T::HALF)
    }

    /// Returns the absolute distance between two unit interval values.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let low = UnitInterval::new(0.25).unwrap();
    /// let high = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(low.distance_to(high).get(), 0.5);
    /// assert_eq!(high.distance_to(low).get(), 0.5);
    /// ```
    #[inline]
    pub fn distance_to(self, rhs: Self) -> Self {
        if self.0 >= rhs.0 {
            Self::from_inner(self.0 - rhs.0)
        } else {
            Self::from_inner(rhs.0 - self.0)
        }
    }

    /// Adds two values, returning `None` if the result is outside `[0, 1]`.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let a = UnitInterval::new(0.25).unwrap();
    /// let b = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(a.checked_add(a).unwrap().get(), 0.5);
    /// assert_eq!(b.checked_add(b), None);
    /// ```
    #[inline(always)]
    pub fn checked_add(self, rhs: Self) -> Option<Self> {
        Self::new(self.0 + rhs.0)
    }

    /// Adds two values without checking that the result is inside `[0, 1]`.
    ///
    /// # Safety
    ///
    /// The caller must guarantee that `self + rhs` is inside `[0, 1]` and not
    /// `NaN`.
    #[cfg(feature = "unsafe")]
    #[cfg_attr(docsrs, doc(cfg(feature = "unsafe")))]
    #[inline(always)]
    pub unsafe fn add_unchecked(self, rhs: Self) -> Self {
        // SAFETY: Guaranteed by the caller.
        unsafe { Self::new_unchecked(self.0 + rhs.0) }
    }

    /// Adds two values and clamps the result into `[0, 1]`.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let value = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(value.saturating_add(value).get(), 1.0);
    /// ```
    #[inline(always)]
    pub fn saturating_add(self, rhs: Self) -> Self {
        Self::saturating(self.0 + rhs.0)
    }

    /// Subtracts `rhs`, returning `None` if the result is outside `[0, 1]`.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let low = UnitInterval::new(0.25).unwrap();
    /// let high = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(high.checked_sub(low).unwrap().get(), 0.5);
    /// assert_eq!(low.checked_sub(high), None);
    /// ```
    #[inline(always)]
    pub fn checked_sub(self, rhs: Self) -> Option<Self> {
        Self::new(self.0 - rhs.0)
    }

    /// Subtracts `rhs` without checking that the result is inside `[0, 1]`.
    ///
    /// # Safety
    ///
    /// The caller must guarantee that `self - rhs` is inside `[0, 1]` and not
    /// `NaN`.
    #[cfg(feature = "unsafe")]
    #[cfg_attr(docsrs, doc(cfg(feature = "unsafe")))]
    #[inline(always)]
    pub unsafe fn sub_unchecked(self, rhs: Self) -> Self {
        // SAFETY: Guaranteed by the caller.
        unsafe { Self::new_unchecked(self.0 - rhs.0) }
    }

    /// Subtracts `rhs` and clamps the result into `[0, 1]`.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let low = UnitInterval::new(0.25).unwrap();
    /// let high = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(low.saturating_sub(high).get(), 0.0);
    /// ```
    #[inline(always)]
    pub fn saturating_sub(self, rhs: Self) -> Self {
        Self::saturating(self.0 - rhs.0)
    }

    /// Divides by `rhs`, returning `None` if the result is outside `[0, 1]`.
    ///
    /// Division by zero follows the backing float semantics and produces
    /// `None`, because infinity is outside the unit interval.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let low = UnitInterval::new(0.25).unwrap();
    /// let high = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(low.checked_div(high).unwrap().get(), 1.0 / 3.0);
    /// assert_eq!(high.checked_div(low), None);
    /// assert_eq!(high.checked_div(UnitInterval::ZERO), None);
    /// ```
    #[inline(always)]
    pub fn checked_div(self, rhs: Self) -> Option<Self> {
        Self::new(self.0 / rhs.0)
    }

    /// Divides by `rhs` without checking that the result is inside `[0, 1]`.
    ///
    /// # Safety
    ///
    /// The caller must guarantee that `self / rhs` is inside `[0, 1]` and not
    /// `NaN`.
    #[cfg(feature = "unsafe")]
    #[cfg_attr(docsrs, doc(cfg(feature = "unsafe")))]
    #[inline(always)]
    pub unsafe fn div_unchecked(self, rhs: Self) -> Self {
        // SAFETY: Guaranteed by the caller.
        unsafe { Self::new_unchecked(self.0 / rhs.0) }
    }

    /// Divides by `rhs` and clamps the result into `[0, 1]`.
    ///
    /// Division by zero follows the backing float semantics and saturates to
    /// one for positive infinity, or zero for `0 / 0`.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let low = UnitInterval::new(0.25).unwrap();
    /// let high = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(high.saturating_div(low).get(), 1.0);
    /// assert_eq!(low.saturating_div(UnitInterval::ZERO).get(), 1.0);
    /// ```
    #[inline(always)]
    pub fn saturating_div(self, rhs: Self) -> Self {
        Self::saturating(self.0 / rhs.0)
    }

    /// Multiplies by an arbitrary float, returning `None` if the result is
    /// outside `[0, 1]`.
    ///
    /// Use the `*` operator when multiplying by another [`UnitInterval`], since
    /// that operation always stays inside the interval.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let value = UnitInterval::new(0.25).unwrap();
    ///
    /// assert_eq!(value.checked_scale(2.0).unwrap().get(), 0.5);
    /// assert_eq!(value.checked_scale(8.0), None);
    /// ```
    #[inline(always)]
    pub fn checked_scale(self, factor: T) -> Option<Self> {
        Self::new(self.0 * factor)
    }

    /// Multiplies by an arbitrary float without checking that the result is
    /// inside `[0, 1]`.
    ///
    /// # Safety
    ///
    /// The caller must guarantee that `self * factor` is inside `[0, 1]` and
    /// not `NaN`.
    #[cfg(feature = "unsafe")]
    #[cfg_attr(docsrs, doc(cfg(feature = "unsafe")))]
    #[inline(always)]
    pub unsafe fn scale_unchecked(self, factor: T) -> Self {
        // SAFETY: Guaranteed by the caller.
        unsafe { Self::new_unchecked(self.0 * factor) }
    }

    /// Multiplies by an arbitrary float and clamps the result into `[0, 1]`.
    ///
    /// Use the `*` operator when multiplying by another [`UnitInterval`], since
    /// that operation always stays inside the interval.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// let value = UnitInterval::new(0.75).unwrap();
    ///
    /// assert_eq!(value.saturating_scale(2.0).get(), 1.0);
    /// assert_eq!(value.saturating_scale(-1.0).get(), 0.0);
    /// ```
    #[inline(always)]
    pub fn saturating_scale(self, factor: T) -> Self {
        Self::saturating(self.0 * factor)
    }

    /// Linearly interpolates between `start` and `end`.
    ///
    /// A value of zero returns `start`, one returns `end`, and values between
    /// zero and one return the corresponding point between them.
    ///
    /// # Examples
    ///
    /// ```
    /// use unit_intervals::UnitInterval;
    ///
    /// assert_eq!(UnitInterval::<f32>::ZERO.lerp(10.0, 20.0), 10.0);
    /// assert_eq!(UnitInterval::<f32>::HALF.lerp(10.0, 20.0), 15.0);
    /// assert_eq!(UnitInterval::<f32>::ONE.lerp(10.0, 20.0), 20.0);
    /// ```
    #[inline]
    pub fn lerp(self, start: T, end: T) -> T {
        start + (end - start) * self.0
    }
}

/// Returns [`UnitInterval::ZERO`].
impl<T: UnitIntervalFloat> Default for UnitInterval<T> {
    #[inline(always)]
    fn default() -> Self {
        Self::ZERO
    }
}

/// Dereferences to the inner floating-point value.
impl<T> Deref for UnitInterval<T> {
    type Target = T;

    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

/// Borrows the inner floating-point value.
impl<T> AsRef<T> for UnitInterval<T> {
    #[inline(always)]
    fn as_ref(&self) -> &T {
        &self.0
    }
}

macro_rules! impl_unit_interval_float {
    ($float:ty) => {
        impl crate::private::Sealed for $float {}

        impl UnitIntervalFloat for $float {
            const ZERO: Self = 0.0;
            const NEG_ONE: Self = -1.0;
            const ONE: Self = 1.0;
            const HALF: Self = 0.5;

            #[inline]
            fn clamp_unit(self) -> Self {
                if self.is_nan() {
                    return Self::ZERO;
                }

                self.clamp(Self::ZERO, Self::ONE)
            }

            #[inline]
            fn clamp_signed_unit(self) -> Self {
                if self.is_nan() {
                    return Self::ZERO;
                }

                self.clamp(Self::NEG_ONE, Self::ONE)
            }
        }

        impl From<UnitInterval<$float>> for $float {
            #[inline(always)]
            fn from(u: UnitInterval<$float>) -> Self {
                u.0
            }
        }

        impl TryFrom<$float> for UnitInterval<$float> {
            type Error = UnitIntervalError;

            #[inline]
            fn try_from(value: $float) -> Result<Self, Self::Error> {
                Self::new(value).ok_or(UnitIntervalError)
            }
        }

        impl PartialEq<$float> for UnitInterval<$float> {
            #[inline(always)]
            fn eq(&self, other: &$float) -> bool {
                self.0 == *other
            }
        }

        impl PartialEq<UnitInterval<$float>> for $float {
            #[inline(always)]
            fn eq(&self, other: &UnitInterval<$float>) -> bool {
                *self == other.0
            }
        }

        impl PartialOrd<$float> for UnitInterval<$float> {
            #[inline(always)]
            fn partial_cmp(&self, other: &$float) -> Option<Ordering> {
                self.0.partial_cmp(other)
            }
        }

        impl PartialOrd<UnitInterval<$float>> for $float {
            #[inline(always)]
            fn partial_cmp(&self, other: &UnitInterval<$float>) -> Option<Ordering> {
                self.partial_cmp(&other.0)
            }
        }

        impl Add for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn add(self, rhs: Self) -> Self::Output {
                self.0 + rhs.0
            }
        }

        impl Add<$float> for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn add(self, rhs: $float) -> Self::Output {
                self.0 + rhs
            }
        }

        impl Add<UnitInterval<$float>> for $float {
            type Output = $float;

            #[inline(always)]
            fn add(self, rhs: UnitInterval<$float>) -> Self::Output {
                self + rhs.0
            }
        }

        impl Sub for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn sub(self, rhs: Self) -> Self::Output {
                self.0 - rhs.0
            }
        }

        impl Sub<$float> for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn sub(self, rhs: $float) -> Self::Output {
                self.0 - rhs
            }
        }

        impl Sub<UnitInterval<$float>> for $float {
            type Output = $float;

            #[inline(always)]
            fn sub(self, rhs: UnitInterval<$float>) -> Self::Output {
                self - rhs.0
            }
        }

        impl Mul<$float> for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn mul(self, rhs: $float) -> Self::Output {
                self.0 * rhs
            }
        }

        impl Mul<UnitInterval<$float>> for $float {
            type Output = $float;

            #[inline(always)]
            fn mul(self, rhs: UnitInterval<$float>) -> Self::Output {
                self * rhs.0
            }
        }

        impl Div for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn div(self, rhs: Self) -> Self::Output {
                self.0 / rhs.0
            }
        }

        impl Div<$float> for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn div(self, rhs: $float) -> Self::Output {
                self.0 / rhs
            }
        }

        impl Div<UnitInterval<$float>> for $float {
            type Output = $float;

            #[inline(always)]
            fn div(self, rhs: UnitInterval<$float>) -> Self::Output {
                self / rhs.0
            }
        }

        impl Rem for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn rem(self, rhs: Self) -> Self::Output {
                self.0 % rhs.0
            }
        }

        impl Rem<$float> for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn rem(self, rhs: $float) -> Self::Output {
                self.0 % rhs
            }
        }

        impl Rem<UnitInterval<$float>> for $float {
            type Output = $float;

            #[inline(always)]
            fn rem(self, rhs: UnitInterval<$float>) -> Self::Output {
                self % rhs.0
            }
        }

        impl Neg for UnitInterval<$float> {
            type Output = $float;

            #[inline(always)]
            fn neg(self) -> Self::Output {
                -self.0
            }
        }

        impl UnitInterval<$float> {
            /// Returns the absolute value.
            #[inline]
            pub fn abs(self) -> Self {
                Self::from_inner(self.0.abs())
            }

            /// Returns a number representing the sign of this value.
            #[inline(always)]
            pub fn signum(self) -> $float {
                self.0.signum()
            }

            /// Returns this value with the sign of `sign`.
            #[inline(always)]
            pub fn copysign(self, sign: $float) -> $float {
                self.0.copysign(sign)
            }

            /// Returns `true` if this value is positive zero.
            #[inline(always)]
            pub fn is_sign_positive(self) -> bool {
                self.0.is_sign_positive()
            }

            /// Returns `true` if this value is negative zero.
            #[inline(always)]
            pub fn is_sign_negative(self) -> bool {
                self.0.is_sign_negative()
            }

            /// Returns `true`; unit interval values are always finite.
            #[inline(always)]
            pub fn is_finite(self) -> bool {
                self.0.is_finite()
            }

            /// Returns `false`; unit interval values cannot be infinite.
            #[inline(always)]
            pub fn is_infinite(self) -> bool {
                self.0.is_infinite()
            }

            /// Returns `false`; unit interval values cannot be `NaN`.
            #[inline(always)]
            pub fn is_nan(self) -> bool {
                self.0.is_nan()
            }

            /// Takes the reciprocal, `1 / self`.
            #[inline(always)]
            pub fn recip(self) -> $float {
                self.0.recip()
            }
        }

        #[cfg(any(test, feature = "std"))]
        impl UnitInterval<$float> {
            /// Returns the largest integer less than or equal to this value.
            #[inline]
            pub fn floor(self) -> Self {
                Self::from_inner(self.0.floor())
            }

            /// Returns the smallest integer greater than or equal to this value.
            #[inline]
            pub fn ceil(self) -> Self {
                Self::from_inner(self.0.ceil())
            }

            /// Returns the nearest integer to this value, rounding halfway cases away from zero.
            #[inline]
            pub fn round(self) -> Self {
                Self::from_inner(self.0.round())
            }

            /// Returns the integer part of this value.
            #[inline]
            pub fn trunc(self) -> Self {
                Self::from_inner(self.0.trunc())
            }

            /// Returns the fractional part of this value.
            #[inline]
            pub fn fract(self) -> Self {
                Self::from_inner(self.0.fract())
            }

            /// Raises this value to an integer power.
            #[inline(always)]
            pub fn powi(self, n: i32) -> $float {
                self.0.powi(n)
            }

            /// Raises this value to a floating-point power.
            #[inline(always)]
            pub fn powf(self, n: $float) -> $float {
                self.0.powf(n)
            }

            /// Returns the square root.
            #[inline(always)]
            pub fn sqrt(self) -> Self {
                Self::from_inner(self.0.sqrt())
            }

            /// Returns the cube root.
            #[inline(always)]
            pub fn cbrt(self) -> Self {
                Self::from_inner(self.0.cbrt())
            }

            /// Computes `self * a + b` with one rounding error.
            #[inline(always)]
            pub fn mul_add(self, a: $float, b: $float) -> $float {
                self.0.mul_add(a, b)
            }

            /// Returns the Euclidean division of this value by `rhs`.
            #[inline(always)]
            pub fn div_euclid(self, rhs: $float) -> $float {
                self.0.div_euclid(rhs)
            }

            /// Returns the least non-negative remainder of this value divided by `rhs`.
            #[inline(always)]
            pub fn rem_euclid(self, rhs: $float) -> $float {
                self.0.rem_euclid(rhs)
            }

            /// Returns `e^(self)`.
            #[inline(always)]
            pub fn exp(self) -> $float {
                self.0.exp()
            }

            /// Returns `2^(self)`.
            #[inline(always)]
            pub fn exp2(self) -> $float {
                self.0.exp2()
            }

            /// Returns the natural logarithm.
            #[inline(always)]
            pub fn ln(self) -> $float {
                self.0.ln()
            }

            /// Returns the logarithm with respect to an arbitrary base.
            #[inline(always)]
            pub fn log(self, base: $float) -> $float {
                self.0.log(base)
            }

            /// Returns the base 2 logarithm.
            #[inline(always)]
            pub fn log2(self) -> $float {
                self.0.log2()
            }

            /// Returns the base 10 logarithm.
            #[inline(always)]
            pub fn log10(self) -> $float {
                self.0.log10()
            }

            /// Returns the sine, in radians.
            #[inline(always)]
            pub fn sin(self) -> $float {
                self.0.sin()
            }

            /// Returns the cosine, in radians.
            #[inline(always)]
            pub fn cos(self) -> $float {
                self.0.cos()
            }

            /// Returns the tangent, in radians.
            #[inline(always)]
            pub fn tan(self) -> $float {
                self.0.tan()
            }

            /// Returns both sine and cosine, in radians.
            #[inline(always)]
            pub fn sin_cos(self) -> ($float, $float) {
                self.0.sin_cos()
            }

            /// Returns the arcsine, in radians.
            #[inline(always)]
            pub fn asin(self) -> $float {
                self.0.asin()
            }

            /// Returns the arccosine, in radians.
            #[inline(always)]
            pub fn acos(self) -> $float {
                self.0.acos()
            }

            /// Returns the arctangent, in radians.
            #[inline(always)]
            pub fn atan(self) -> Self {
                Self::from_inner(self.0.atan())
            }

            /// Returns the four-quadrant arctangent of `self` and `other`, in radians.
            #[inline(always)]
            pub fn atan2(self, other: $float) -> $float {
                self.0.atan2(other)
            }

            /// Returns the hyperbolic sine.
            #[inline(always)]
            pub fn sinh(self) -> $float {
                self.0.sinh()
            }

            /// Returns the hyperbolic cosine.
            #[inline(always)]
            pub fn cosh(self) -> $float {
                self.0.cosh()
            }

            /// Returns the hyperbolic tangent.
            #[inline(always)]
            pub fn tanh(self) -> Self {
                Self::from_inner(self.0.tanh())
            }

            /// Returns the inverse hyperbolic sine.
            #[inline(always)]
            pub fn asinh(self) -> Self {
                Self::from_inner(self.0.asinh())
            }

            /// Returns the inverse hyperbolic cosine.
            #[inline(always)]
            pub fn acosh(self) -> $float {
                self.0.acosh()
            }

            /// Returns the inverse hyperbolic tangent.
            #[inline(always)]
            pub fn atanh(self) -> $float {
                self.0.atanh()
            }

            /// Calculates the length of the hypotenuse of a right-angle triangle.
            #[inline(always)]
            pub fn hypot(self, other: $float) -> $float {
                self.0.hypot(other)
            }
        }
    };
}

impl_unit_interval_float!(f32);
impl_unit_interval_float!(f64);

/// Converts a `UnitInterval<f32>` into its inner value widened to `f64`.
impl From<UnitInterval<f32>> for f64 {
    #[inline]
    fn from(u: UnitInterval) -> Self {
        u.0 as f64
    }
}

/// Converts a `UnitInterval<f32>` into `UnitInterval<f64>`.
impl From<UnitInterval<f32>> for UnitInterval<f64> {
    #[inline]
    fn from(u: UnitInterval<f32>) -> Self {
        Self::from_inner(u.0 as f64)
    }
}

/// Converts a `UnitInterval<f64>` into `UnitInterval<f32>`.
impl From<UnitInterval<f64>> for UnitInterval<f32> {
    #[inline]
    fn from(u: UnitInterval<f64>) -> Self {
        Self::from_inner(u.0 as f32)
    }
}

/// Multiplies two unit interval values.
///
/// Multiplication is implemented as an operator because the product of two
/// values in `[0, 1]` is also in `[0, 1]`.
///
/// # Examples
///
/// ```
/// use unit_intervals::UnitInterval;
///
/// let a = UnitInterval::new(0.25).unwrap();
/// let b = UnitInterval::new(0.75).unwrap();
///
/// assert_eq!((a * b).get(), 0.1875);
/// ```
impl<T: UnitIntervalFloat> Mul for UnitInterval<T> {
    type Output = Self;

    #[inline]
    fn mul(self, rhs: Self) -> Self::Output {
        Self::from_inner(self.0 * rhs.0)
    }
}

#[cfg(test)]
mod tests {
    use super::UnitInterval;

    #[test]
    #[should_panic(expected = "UnitInterval invariant violated")]
    fn test_configuration_enables_internal_assertions() {
        UnitInterval::<f32>::from_inner(1.1);
    }

    #[cfg(feature = "rkyv")]
    #[test]
    fn rkyv_deserialization_rejects_invalid_archived_inner_value() {
        let invalid = super::ArchivedUnitInterval(rkyv::Archived::<f32>::from_native(1.25));

        assert!(rkyv::deserialize::<UnitInterval<f32>, rkyv::rancor::Error>(&invalid).is_err());
    }
}