decimal-scaled 0.5.0

Const-generic base-10 fixed-point decimals (D18/D38/D76/D153/D307 and the half-width tiers up to D1232) with integer-only transcendentals correctly rounded to within 0.5 ULP — exact at the type's last representable place. Deterministic across every platform; no_std-friendly.
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
// SPDX-FileCopyrightText: 2026 John Moxley
// SPDX-License-Identifier: MIT OR Apache-2.0

//! The `BigInt` trait — the single integer-layer surface.
//!
//! One trait carries everything the decimal kernels and the wide-tier
//! algorithms need from a fixed-width integer: the arithmetic +
//! optimisable surface (mirroring [`crate::DecimalArithmetic`]), the limb
//! round-trip bridge, the kernel-facing storage operations (`TEN`,
//! `isqrt`, `resize_to`, `div_rem`, `f64` bridges), and the
//! magnitude/sign cast. It is implemented for [`Int<N>`] only (the
//! `Uint<N>` magnitude type is used directly, never through this trait),
//! with static dispatch and `#[inline]` bodies, so generic width-aware
//! code pays no runtime cost.
//!
//! Methods that only make sense on one signedness (`abs` / `signum` /
//! `is_negative`) stay on the inherent impls rather than this shared
//! surface.

use super::compute_limbs::Limbs;
use super::Int;

/// The unified big-integer trait — the single common surface for every
/// fixed-width integer type. Static dispatch only.
pub trait BigInt:
    Copy
    + PartialEq
    + Eq
    + PartialOrd
    + Ord
    + core::fmt::Debug
    + core::ops::Add<Output = Self>
    + core::ops::Sub<Output = Self>
    + core::ops::Mul<Output = Self>
    + core::ops::Div<Output = Self>
    + core::ops::Rem<Output = Self>
    + core::ops::Neg<Output = Self>
    + core::ops::BitAnd<Output = Self>
    + core::ops::BitOr<Output = Self>
    + core::ops::BitXor<Output = Self>
    + core::ops::Not<Output = Self>
    + core::ops::Shl<u32, Output = Self>
    + core::ops::Shr<u32, Output = Self>
{
    /// Raw little-endian limb array type (`[u64; LIMBS]`).
    type Limbs: Copy;

    /// The compute-scratch carrier for this value integer — the zero-sized
    /// [`Limbs<N>`](crate::int::types::compute_limbs::Limbs) marker that owns
    /// the per-`N` [`ComputeLimbs`](crate::int::types::compute_limbs::ComputeLimbs)
    /// buffers. This is the sanctioned bridge that avoids a
    /// `ComputeInt: BigInt` supertrait cycle: scratch is not a
    /// capability OF the value integer, the value integer merely *names* its
    /// carrier here. A helper generic over a value integer `W: BigInt`
    /// reaches scratch as `W::Scratch::single_u128()`.
    ///
    /// The associated type is deliberately **unbounded** (no
    /// `: ComputeLimbs`). `BigInt` is a blanket `impl<const N>` for every
    /// `Int<N>`, whereas in the `exact-scratch` build `ComputeLimbs` is
    /// implemented only at the per-width list — so a `type Scratch: ComputeLimbs`
    /// bound would be unprovable for an arbitrary blanket `N`. The
    /// `ComputeLimbs` bound is therefore discharged at the generic helper USE
    /// sites (`where W::Scratch: ComputeLimbs`), where `W` is always a
    /// concrete width that has it.
    type Scratch;

    /// Number of 64-bit limbs.
    const LIMBS: usize;
    /// Bit width (`LIMBS * 64`), as `u32` for the kernels' bit-length math.
    const BITS: u32;
    /// The additive identity.
    const ZERO: Self;
    /// The multiplicative identity.
    const ONE: Self;
    /// Integer constant `10` — the `10^scale` rescaling every kernel does.
    const TEN: Self;
    /// Number of u128 limbs needed to hold this type's full magnitude
    /// (`(L + 1) / 2`). Hot-path divide / rescale callers pass this as a
    /// `const N` to size their magnitude stack buffer to the exact width.
    const U128_LIMBS: usize;

    // ── Predicates ────────────────────────────────────────────────────

    fn is_zero(self) -> bool;
    fn is_one(self) -> bool;

    // ── Wrapping arithmetic ──────────────────────────────────────────

    fn wrapping_add(self, rhs: Self) -> Self;
    fn wrapping_sub(self, rhs: Self) -> Self;
    fn wrapping_mul(self, rhs: Self) -> Self;

    /// Truncated-low (mod `2^BITS`) product, the same value as
    /// [`BigInt::wrapping_mul`], but computed in u128 limbs when the limb
    /// count is even. Wide-tier exp/powf runs its Taylor work-multiply on
    /// even-`LIMBS` work integers (`Int<128>`/`Int<192>`/`Int<256>`); the
    /// u128-packed low-half schoolbook is ~1.3-1.6x faster there
    /// (`benches/micro/mul_low_u128_ab.rs`). The default delegates to
    /// [`BigInt::wrapping_mul`]; `Int<N>` overrides it for even `N`.
    #[inline]
    fn wrapping_mul_low_u128(self, rhs: Self) -> Self {
        self.wrapping_mul(rhs)
    }

    // ── Checked arithmetic ───────────────────────────────────────────

    fn checked_add(self, rhs: Self) -> Option<Self>;
    fn checked_sub(self, rhs: Self) -> Option<Self>;
    fn checked_mul(self, rhs: Self) -> Option<Self>;

    // ── Integer-exponent powers ──────────────────────────────────────

    fn pow(self, exp: u32) -> Self;
    fn wrapping_pow(self, exp: u32) -> Self;
    fn checked_pow(self, exp: u32) -> Option<Self>;

    // ── Optimisable named functions ──────────────────────────────────

    /// `self²` (wrapping), via the dedicated half-product kernel.
    fn sqr(self) -> Self;
    /// Truncated-low (mod `2^BITS`) square, the same value as [`BigInt::sqr`],
    /// but computed in u128 limbs when the limb count is even — the squaring
    /// sibling of [`BigInt::wrapping_mul_low_u128`]. Wide-tier exp/powf runs its
    /// Smith squaring loop on even-`LIMBS` work integers; the u128-packed
    /// symmetric square is faster there (`benches/micro/sqr_low_u128_ab.rs`).
    /// The default delegates to [`BigInt::sqr`]; `Int<N>` overrides it for even
    /// `N` via the limb-width matcher.
    #[inline]
    fn wrapping_sqr_low_u128(self) -> Self {
        self.sqr()
    }
    /// `self³` (wrapping), `sqr` then one multiply.
    fn cube(self) -> Self;
    /// Bit length: `0` for zero, else `floor(log2|self|) + 1`.
    fn bit_length(self) -> u32;
    /// Leading zero bits in the `BITS`-wide representation.
    fn leading_zeros(self) -> u32;

    // ── Wide-kernel surface ──────────────────────────────────────────

    /// Exact integer square root of the magnitude (`floor(sqrt(|self|))`).
    fn isqrt(self) -> Self;
    /// Exact integer cube root of the magnitude (`floor(cbrt(|self|))`).
    fn icbrt(self) -> Self;
    /// Widening / narrowing cast to a sibling integer type.
    fn resize_to<T: BigInt>(self) -> T;
    /// Truncating quotient and remainder `(self / rhs, self % rhs)`.
    fn div_rem(self, rhs: Self) -> (Self, Self);
    /// `true` if bit `idx` of the two's-complement representation is set.
    fn bit(self, idx: u32) -> bool;
    /// Builds the value from a signed 128-bit integer.
    fn from_i128(v: i128) -> Self;
    /// The value as a signed 128-bit integer (truncating to the low 128
    /// bits; the inverse of [`BigInt::from_i128`]).
    fn to_i128(self) -> i128;
    /// `self * n` for an unsigned 64-bit multiplier (panics on overflow —
    /// the default-form contract, matching `Mul`-operator semantics).
    fn mul_u64(self, n: u64) -> Self;
    /// Nearest-`f64` value of `self` (lossy above 53 significant bits).
    fn to_f64(self) -> f64;
    /// Truncating conversion from `f64` (saturating on out-of-range).
    fn from_f64_val(v: f64) -> Self;

    // ── Limb round-trip bridge ───────────────────────────────────────

    /// Constructs from raw little-endian limbs.
    fn from_limbs(limbs: Self::Limbs) -> Self;
    /// Returns the raw little-endian limbs by value.
    fn to_limbs(self) -> Self::Limbs;

    // ── Magnitude / sign bridge ──────────────────────────────────────

    /// Writes the magnitude into a caller-supplied u128 limb buffer
    /// (little-endian) and returns the sign; zero-pads `dst`. The
    /// inverse of [`BigInt::from_mag_sign_u128`].
    fn mag_into_u128(self, dst: &mut [u128]) -> bool;

    /// Rebuilds `Self` from a u128-limb magnitude and a sign. The
    /// inverse of [`BigInt::mag_into_u128`].
    fn from_mag_sign_u128(mag: &[u128], negative: bool) -> Self;

    /// Rebuilds `Self` from a little-endian u64-limb magnitude and a sign
    /// — the u64-limb sibling of [`BigInt::from_mag_sign_u128`]. Copies
    /// the low `min(mag.len(), LIMBS)` limbs (zero-extending above,
    /// truncating below) and applies the sign. A little-endian u64 limb
    /// slice IS the value (`Σ mag[i]·2^(64·i)`), so the injection is a
    /// direct copy; the constant-table fold (`consts::table::limbs_to_w`)
    /// is the hot caller — every baked `pow10` / `ln2` / `pi` lookup
    /// builds its work integer through here.
    fn from_mag_sign_u64(mag: &[u64], negative: bool) -> Self;

    // ── Reductions (defaults) ────────────────────────────────────────

    #[inline]
    fn sum<I>(iter: I) -> Self
    where
        I: IntoIterator<Item = Self>,
    {
        iter.into_iter().fold(Self::ZERO, |acc, x| acc + x)
    }

    #[inline]
    fn product<I>(iter: I) -> Self
    where
        I: IntoIterator<Item = Self>,
    {
        iter.into_iter().fold(Self::ONE, |acc, x| acc * x)
    }
}

// ── BigInt for Int<N> ───────────────────────────────────────────────

impl<const N: usize> BigInt for Int<N> {
    type Limbs = [u64; N];
    type Scratch = Limbs<N>;

    const LIMBS: usize = N;
    const BITS: u32 = (N * 64) as u32;
    const ZERO: Self = Int::<N>::ZERO;
    const ONE: Self = Int::<N>::ONE;
    const TEN: Self = Int::<N>::TEN;
    const U128_LIMBS: usize = N.div_ceil(2);

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

    #[inline]
    fn wrapping_add(self, rhs: Self) -> Self {
        Int::wrapping_add(self, rhs)
    }
    #[inline]
    fn wrapping_sub(self, rhs: Self) -> Self {
        Int::wrapping_sub(self, rhs)
    }
    #[inline]
    fn wrapping_mul(self, rhs: Self) -> Self {
        Int::wrapping_mul(self, rhs)
    }

    #[inline]
    fn wrapping_mul_low_u128(self, rhs: Self) -> Self {
        // Truncated-low product through the limb-width matcher
        // `int::policy::mul_low`: it owns the `(Algorithm, LimbSize)`
        // verdict (the architecture's second axis) and const-folds it to a
        // single direct `mul_low_limb::<N, _>` call per monomorphisation.
        // Bit-identical to `wrapping_mul` (mod 2^64N) at either limb width.
        let a = *self.as_limbs();
        let b = *rhs.as_limbs();
        let mut out = [0u64; N];
        crate::int::policy::mul_low::dispatch::<N>(&a, &b, &mut out);
        Int::from_limbs(out)
    }

    #[inline]
    fn wrapping_sqr_low_u128(self) -> Self {
        // Truncated-low square through the limb-width matcher
        // `int::policy::sqr_low`: same `(Algorithm, LimbSize)` second-axis
        // shape as `mul_low`, const-folded to one direct `sqr_low_limb::<N, _>`
        // call. Bit-identical to `sqr` (mod 2^64N) at either limb width.
        let a = *self.as_limbs();
        let mut out = [0u64; N];
        crate::int::policy::sqr_low::dispatch::<N>(&a, &mut out);
        Int::from_limbs(out)
    }

    #[inline]
    fn checked_add(self, rhs: Self) -> Option<Self> {
        Int::checked_add(self, rhs)
    }
    #[inline]
    fn checked_sub(self, rhs: Self) -> Option<Self> {
        Int::checked_sub(self, rhs)
    }
    #[inline]
    fn checked_mul(self, rhs: Self) -> Option<Self> {
        Int::checked_mul(self, rhs)
    }

    #[inline]
    fn pow(self, exp: u32) -> Self {
        Int::wrapping_pow(self, exp)
    }
    #[inline]
    fn wrapping_pow(self, exp: u32) -> Self {
        Int::wrapping_pow(self, exp)
    }
    #[inline]
    fn checked_pow(self, exp: u32) -> Option<Self> {
        Int::checked_pow(self, exp)
    }

    #[inline]
    fn sqr(self) -> Self {
        self.wrapping_sqr()
    }
    #[inline]
    fn cube(self) -> Self {
        self.wrapping_cube()
    }
    #[inline]
    fn bit_length(self) -> u32 {
        Int::bit_length(&self)
    }
    #[inline]
    fn leading_zeros(self) -> u32 {
        Int::leading_zeros(&self)
    }

    #[inline]
    fn isqrt(self) -> Self {
        // Magnitude isqrt, matching the macro's signed `isqrt`.
        Self::from_limbs(*self.unsigned_abs().isqrt().as_limbs())
    }

    #[inline]
    fn icbrt(self) -> Self {
        // Magnitude icbrt — routes through the unsigned sibling's
        // `icbrt_dispatch` (the seeded Newton limb kernel), matching the
        // inherent signed `icbrt`.
        Self::from_limbs(*self.unsigned_abs().icbrt().as_limbs())
    }

    #[inline]
    fn resize_to<T: BigInt>(self) -> T {
        // Packs this type's own N-limb magnitude into u128 limbs and
        // hands it to `T::from_mag_sign_u128`, the kept magnitude/sign
        // bridge on the `BigInt` surface.
        let negative = self.is_negative();
        // Reuse the direct u64→u128 pack the concrete `mag_into_u128`
        // override performs, then rebuild `T` from the magnitude/sign.
        // `resize_to` is a blanket `BigInt` method (every `N`) — it is invoked
        // both on concrete widths AND on a generic receiver `Int<N>` (the
        // `raw.resize_to::<Int<N>>()` policy bridges). A `where Self::Scratch:
        // ComputeLimbs` bound (which the `BigInt::Scratch` bridge would now
        // permit) is therefore unprovable here: a generic-`N` caller cannot
        // discharge `Limbs<N>: ComputeLimbs` in the per-width `exact-scratch`
        // build, and the bound would cascade unboundedly across every policy
        // dispatcher. So this width-erased blanket method keeps the gated
        // build-max blanket `MAX_U128_LIMB` (NOT a frozen literal) — the same
        // category as the slice-divide engines and `int_fmt`.
        let mut u128_mag = [0u128; crate::int::types::compute_limbs::MAX_U128_LIMB];
        let u128_len = N.div_ceil(2);
        self.mag_into_u128(&mut u128_mag[..u128_len]);
        T::from_mag_sign_u128(&u128_mag[..u128_len], negative)
    }

    #[inline]
    fn div_rem(self, rhs: Self) -> (Self, Self) {
        Int::div_rem(self, rhs)
    }

    #[inline]
    fn bit(self, idx: u32) -> bool {
        Int::bit(self, idx)
    }

    #[inline]
    fn from_i128(v: i128) -> Self {
        Int::from_i128(v)
    }

    #[inline]
    fn to_i128(self) -> i128 {
        self.as_i128()
    }

    #[inline]
    fn mul_u64(self, n: u64) -> Self {
        Int::mul_u64(self, n)
    }

    #[inline]
    fn to_f64(self) -> f64 {
        Int::to_f64(self)
    }

    #[inline]
    fn from_f64_val(v: f64) -> Self {
        Int::from_f64(v)
    }

    #[inline]
    fn from_limbs(limbs: [u64; N]) -> Self {
        Int::from_limbs(limbs)
    }
    #[inline]
    fn to_limbs(self) -> [u64; N] {
        *self.as_limbs()
    }

    /// Direct u64 → u128 limb pack into the caller's `dst` buffer. Only
    /// this type's own `N` u64 limbs are read (= `(N + 1) / 2` u128
    /// limbs); the rest of `dst` is zero-filled.
    #[inline]
    fn mag_into_u128(self, dst: &mut [u128]) -> bool {
        let mag = *self.unsigned_abs().as_limbs();
        let n_full_pairs = N / 2;
        let dst_len = dst.len();
        let mut i = 0;
        let m = n_full_pairs.min(dst_len);
        while i < m {
            dst[i] = (mag[2 * i] as u128) | ((mag[2 * i + 1] as u128) << 64);
            i += 1;
        }
        // Odd-N tail: one u64 promoted with zero high half.
        if (N & 1) == 1 && i < dst_len && i < <Self as BigInt>::U128_LIMBS {
            dst[i] = mag[2 * i] as u128;
            i += 1;
        }
        while i < dst_len {
            dst[i] = 0;
            i += 1;
        }
        self.is_negative()
    }

    /// Direct little-endian u64 limb injection: the low `min(len, N)`
    /// limbs are copied (the slice IS the value), then the sign applied.
    #[inline]
    fn from_mag_sign_u64(mag: &[u64], negative: bool) -> Self {
        Int::from_mag_limbs(mag, negative)
    }

    /// Direct u128 → u64 limb unpack into this type's magnitude. Only
    /// `(N + 1) / 2` u128 limbs are read; excess is silently dropped.
    #[inline]
    fn from_mag_sign_u128(mag: &[u128], negative: bool) -> Self {
        let u128_limbs = N.div_ceil(2);
        let mut out = [0u64; N];
        let m = u128_limbs.min(mag.len());
        let n_full_pairs = N / 2;
        let copy_pairs = n_full_pairs.min(m);
        let mut i = 0;
        while i < copy_pairs {
            let v = mag[i];
            out[2 * i] = v as u64;
            out[2 * i + 1] = (v >> 64) as u64;
            i += 1;
        }
        // Odd-N tail: only the low u64 of mag[i] survives.
        if (N & 1) == 1 && i < m {
            out[2 * i] = mag[i] as u64;
        }
        Self::from_mag_limbs(&out, negative)
    }
}