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
use core::{
    cmp::Ordering,
    error::Error,
    fmt,
    ops::{Add, Deref, Div, Mul, Neg, Rem, Sub},
};

use crate::{UnitInterval, UnitIntervalError, UnitIntervalFloat};

/// A floating-point value constrained to the closed signed unit interval `[-1, 1]`.
///
/// `SignedUnitInterval` is useful for normalized signed values such as direction,
/// balance, centered offsets, joystick axes, and correlation-like coefficients.
#[cfg_attr(
    feature = "rkyv",
    derive(::rkyv::Archive, ::rkyv::Serialize),
    rkyv(crate = ::rkyv)
)]
#[derive(Debug, Copy, Clone, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct SignedUnitInterval<T = f32>(T);

/// Error returned when converting an out-of-range value into a [`SignedUnitInterval`].
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct SignedUnitIntervalError;

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

impl Error for SignedUnitIntervalError {}

#[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<SignedUnitInterval<T>, D> for ArchivedSignedUnitInterval<T>
    where
        T: Archive + UnitIntervalFloat,
        T::Archived: Deserialize<T, D>,
        D: Fallible + ?Sized,
        D::Error: Source,
    {
        #[inline]
        fn deserialize(&self, deserializer: &mut D) -> Result<SignedUnitInterval<T>, D::Error> {
            let value = self.0.deserialize(deserializer)?;

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

#[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 SignedUnitInterval<T> {
        #[inline]
        fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
            self.0.serialize(serializer)
        }
    }

    impl<'de, T> Deserialize<'de> for SignedUnitInterval<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
            // `SignedUnitInterval`. 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(SignedUnitIntervalError))
        }
    }
}

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

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

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

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

        #[inline]
        fn is_valid_bit_pattern(bits: &Self::Bits) -> bool {
            SignedUnitInterval::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_signed_unit_interval {
        ($float:ty, $unsigned:ty) => {
            impl<'a> Arbitrary<'a> for SignedUnitInterval<$float> {
                #[inline]
                fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
                    let raw = <$unsigned as Arbitrary<'a>>::arbitrary(u)?;
                    let unit = raw as $float / <$unsigned>::MAX as $float;
                    let value = unit * 2.0 - 1.0;

                    Ok(Self::from_inner(value))
                }

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

    impl_arbitrary_signed_unit_interval!(f32, u32);
    impl_arbitrary_signed_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, CheckedNeg},
            saturating::SaturatingMul,
        },
    };

    macro_rules! impl_num_traits_signed_unit_interval {
        ($float:ty) => {
            impl ToPrimitive for SignedUnitInterval<$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 SignedUnitInterval<$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 SignedUnitInterval<$float> {
                #[inline]
                fn from<T: ToPrimitive>(n: T) -> Option<Self> {
                    <$float as NumCast>::from(n).and_then(Self::new)
                }
            }

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

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

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

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

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

            impl ToBytes for SignedUnitInterval<$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 SignedUnitInterval<$float> {
                #[inline]
                fn checked_mul(&self, v: &Self) -> Option<Self> {
                    Some(*self * *v)
                }
            }

            impl CheckedNeg for SignedUnitInterval<$float> {
                #[inline]
                fn checked_neg(&self) -> Option<Self> {
                    Some(-*self)
                }
            }

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

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

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

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

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

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

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

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

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

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

    impl_num_traits_signed_unit_interval!(f32);
    impl_num_traits_signed_unit_interval!(f64);
    impl_pow_signed_unit_interval!(u8);
    impl_pow_signed_unit_interval!(u16);
    impl_pow_signed_unit_interval!(u32);
    impl_pow_signed_unit_interval!(usize);

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

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

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

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

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

    #[inline]
    fn pow_signed_unit_interval<T: UnitIntervalFloat>(
        base: SignedUnitInterval<T>,
        exp: usize,
    ) -> SignedUnitInterval<T> {
        let mut result = SignedUnitInterval::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> SignedUnitInterval<T> {
    /// The lower bound of the signed unit interval.
    pub const NEG_ONE: Self = Self(T::NEG_ONE);

    /// The midpoint of the signed unit interval.
    pub const ZERO: Self = Self(T::ZERO);

    /// The upper bound of the signed unit interval.
    pub const ONE: Self = Self(T::ONE);

    /// The positive midpoint of the signed unit interval.
    pub const HALF: Self = Self(T::HALF);

    /// Creates a value if `v` is inside `[-1, 1]`.
    ///
    /// Returns `None` for values outside the interval and for `NaN`.
    #[inline]
    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 `[-1, 1]`.
    ///
    /// # Safety
    ///
    /// The caller must guarantee that `v` is greater than or equal to negative
    /// one, less than or equal to one, and not `NaN`.
    #[cfg(feature = "unsafe")]
    #[inline]
    pub const unsafe fn new_unchecked(v: T) -> Self {
        Self(v)
    }

    /// Returns whether `v` is inside `[-1, 1]`.
    ///
    /// `NaN` is not contained in the interval.
    #[inline]
    pub fn contains(v: T) -> bool {
        v >= T::NEG_ONE && v <= T::ONE
    }

    /// Creates a value by clamping `v` into `[-1, 1]`.
    ///
    /// `NaN` is treated as zero.
    #[inline]
    pub fn saturating(v: T) -> Self {
        Self::from_inner(v.clamp_signed_unit())
    }

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

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

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

    /// Returns the inner floating-point value.
    #[inline]
    pub const fn get(self) -> T {
        self.0
    }

    /// Consumes the wrapper and returns the inner floating-point value.
    #[inline]
    pub const fn into_inner(self) -> T {
        self.0
    }

    /// Returns whether this value is exactly zero.
    #[inline]
    pub fn is_zero(self) -> bool {
        self.0 == T::ZERO
    }

    /// Returns whether this value is exactly one.
    #[inline]
    pub fn is_one(self) -> bool {
        self.0 == T::ONE
    }

    /// Returns whether this value is exactly negative one.
    #[inline]
    pub fn is_neg_one(self) -> bool {
        self.0 == T::NEG_ONE
    }

    /// Returns `1 - self`.
    #[inline]
    pub fn complement(self) -> T {
        T::ONE - self.0
    }

    /// Returns the smaller of two signed unit interval values.
    #[inline]
    pub fn min<R: Into<Self>>(self, rhs: R) -> Self {
        let rhs = rhs.into();

        if self.0 <= rhs.0 { self } else { rhs }
    }

    /// Returns the larger of two signed unit interval values.
    #[inline]
    pub fn max<R: Into<Self>>(self, rhs: R) -> Self {
        let rhs = rhs.into();

        if self.0 >= rhs.0 { self } else { rhs }
    }

    /// Returns the midpoint between two signed unit interval values.
    #[inline]
    pub fn midpoint<R: Into<Self>>(self, rhs: R) -> Self {
        let rhs = rhs.into();

        Self::from_inner((self.0 + rhs.0) * T::HALF)
    }

    /// Returns the absolute distance between two signed unit interval values.
    #[inline]
    pub fn distance_to<R: Into<Self>>(self, rhs: R) -> T {
        let rhs = rhs.into();

        if self.0 >= rhs.0 {
            self.0 - rhs.0
        } else {
            rhs.0 - self.0
        }
    }

    /// Adds two values, returning `None` if the result is outside `[-1, 1]`.
    #[inline]
    pub fn checked_add<R: Into<Self>>(self, rhs: R) -> Option<Self> {
        Self::new(self.0 + rhs.into().0)
    }

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

    /// Adds two values and clamps the result into `[-1, 1]`.
    #[inline]
    pub fn saturating_add<R: Into<Self>>(self, rhs: R) -> Self {
        Self::saturating(self.0 + rhs.into().0)
    }

    /// Subtracts `rhs`, returning `None` if the result is outside `[-1, 1]`.
    #[inline]
    pub fn checked_sub<R: Into<Self>>(self, rhs: R) -> Option<Self> {
        Self::new(self.0 - rhs.into().0)
    }

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

    /// Subtracts `rhs` and clamps the result into `[-1, 1]`.
    #[inline]
    pub fn saturating_sub<R: Into<Self>>(self, rhs: R) -> Self {
        Self::saturating(self.0 - rhs.into().0)
    }

    /// Divides by `rhs`, returning `None` if the result is outside `[-1, 1]`.
    #[inline]
    pub fn checked_div<R: Into<Self>>(self, rhs: R) -> Option<Self> {
        Self::new(self.0 / rhs.into().0)
    }

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

    /// Divides by `rhs` and clamps the result into `[-1, 1]`.
    #[inline]
    pub fn saturating_div<R: Into<Self>>(self, rhs: R) -> Self {
        Self::saturating(self.0 / rhs.into().0)
    }

    /// Multiplies by an arbitrary float, returning `None` if the result is outside `[-1, 1]`.
    #[inline]
    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 `[-1, 1]`.
    ///
    /// # Safety
    ///
    /// The caller must guarantee that `self * factor` is inside `[-1, 1]` and
    /// not `NaN`.
    #[cfg(feature = "unsafe")]
    #[cfg_attr(docsrs, doc(cfg(feature = "unsafe")))]
    #[inline]
    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 `[-1, 1]`.
    #[inline]
    pub fn saturating_scale(self, factor: T) -> Self {
        Self::saturating(self.0 * factor)
    }

    /// Linearly interpolates between `start` and `end`.
    #[inline]
    pub fn lerp(self, start: T, end: T) -> T {
        start + (end - start) * self.0
    }
}

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

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

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

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

impl<T: UnitIntervalFloat> From<UnitInterval<T>> for SignedUnitInterval<T> {
    #[inline]
    fn from(u: UnitInterval<T>) -> Self {
        Self::from_inner(u.get())
    }
}

impl<T: UnitIntervalFloat> TryFrom<SignedUnitInterval<T>> for UnitInterval<T> {
    type Error = UnitIntervalError;

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

macro_rules! impl_signed_unit_interval_float {
    ($float:ty) => {
        impl From<SignedUnitInterval<$float>> for $float {
            #[inline]
            fn from(u: SignedUnitInterval<$float>) -> Self {
                u.0
            }
        }

        impl TryFrom<$float> for SignedUnitInterval<$float> {
            type Error = SignedUnitIntervalError;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        impl SignedUnitInterval<$float> {
            /// Returns the absolute value.
            #[inline]
            pub fn abs(self) -> UnitInterval<$float> {
                UnitInterval::new(self.0.abs()).expect("absolute signed unit value is in [0, 1]")
            }

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

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

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

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

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

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

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

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

        #[cfg(any(test, feature = "std"))]
        impl SignedUnitInterval<$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]
            pub fn powi(self, n: i32) -> $float {
                self.0.powi(n)
            }

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

            /// Returns the square root.
            #[inline]
            pub fn sqrt(self) -> $float {
                self.0.sqrt()
            }

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

            /// Computes `self * a + b` with one rounding error.
            #[inline]
            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]
            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]
            pub fn rem_euclid(self, rhs: $float) -> $float {
                self.0.rem_euclid(rhs)
            }

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

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

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

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

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

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

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

            /// Returns the cosine, in radians.
            #[inline]
            pub fn cos(self) -> UnitInterval<$float> {
                UnitInterval::new(self.0.cos()).expect("cosine on [-1, 1] is in [0, 1]")
            }

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

            /// Returns both sine and cosine, in radians.
            #[inline]
            pub fn sin_cos(self) -> (Self, UnitInterval<$float>) {
                let (sin, cos) = self.0.sin_cos();
                (
                    Self::from_inner(sin),
                    UnitInterval::new(cos).expect("cosine on [-1, 1] is in [0, 1]"),
                )
            }

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

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

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

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

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

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

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

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

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

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

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

impl_signed_unit_interval_float!(f32);
impl_signed_unit_interval_float!(f64);

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

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

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

/// Multiplies two signed unit interval values.
impl<T: UnitIntervalFloat> Mul for SignedUnitInterval<T> {
    type Output = Self;

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

/// Multiplies a signed unit interval by a unit interval.
impl<T: UnitIntervalFloat> Mul<UnitInterval<T>> for SignedUnitInterval<T> {
    type Output = Self;

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

/// Multiplies a unit interval by a signed unit interval.
impl<T: UnitIntervalFloat> Mul<SignedUnitInterval<T>> for UnitInterval<T> {
    type Output = SignedUnitInterval<T>;

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

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

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

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

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