agra
64f77e9779
fix(std): render integer formatter extremes — i64::MIN and unsigned all-ones [F0.8]
...
Resolves issue 0090. The `{}` integer formatter mis-rendered both ends of
the 64-bit range:
- `int_to_string` computed the magnitude as `0 - n`, which overflows for
`s64::MIN` (its magnitude is unrepresentable as a positive s64) — the
value stayed negative, the digit loop ran zero times, so only `-`
printed. It now extracts digits straight from `n` (per-digit
`|n % 10|`, `n` truncating toward zero), never negating MIN.
- `any_to_string`'s `case int:` formatted every integer as s64, so a u64
all-ones value printed as `-1`. There was no `uint` type-category to
distinguish signedness. Added an additive `type_is_unsigned(T)`
reflection builtin (static fold + dynamic interp/LLVM paths, mirroring
`type_name`), backed by the new `TypeTable.isUnsignedInt` predicate, and
a `uint_to_string` formatter (unsigned decimal via long-division over
four 16-bit limbs). `case int:` routes through `type_is_unsigned(type)`.
The 16-bit-limb split is factored into a shared `decompose_u16x4`, now
reused by `int_to_hex_string` (no second unsigned-math routine).
Regression: examples/0046-basic-int-formatter-extremes pins both extremes
plus a width spread; unit tests cover `isUnsignedInt`. Docs (specs.md
representation note, readme std API) updated for unsigned/extreme `{}`
behavior. IR snapshots refreshed for the two new std functions.
2026-06-05 09:05:37 +03:00
..
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-03 19:32:49 +03:00
2026-06-03 20:09:46 +03:00
2026-06-05 09:05:37 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 22:28:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:31:18 +03:00
2026-06-02 09:35:41 +03:00
2026-06-02 19:20:14 +03:00
2026-06-04 02:00:13 +03:00
2026-06-05 09:05:37 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-03 19:00:39 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 16:59:20 +03:00
2026-06-02 17:20:31 +03:00
2026-06-02 17:45:37 +03:00
2026-06-03 19:00:39 +03:00
2026-06-04 03:44:19 +03:00
2026-06-04 04:04:40 +03:00
2026-06-04 04:22:43 +03:00
2026-06-04 04:52:42 +03:00
2026-06-04 09:06:08 +03:00
2026-06-04 08:22:45 +03:00
2026-06-04 09:06:08 +03:00
2026-06-04 09:39:18 +03:00
2026-06-04 10:38:21 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 15:32:48 +03:00
2026-06-04 16:14:06 +03:00
2026-06-04 16:14:06 +03:00
2026-06-04 17:04:41 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 19:16:37 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 21:14:35 +03:00
2026-06-04 21:14:35 +03:00
2026-06-04 22:17:53 +03:00
2026-06-05 00:35:52 +03:00
2026-06-04 23:30:41 +03:00
2026-06-05 00:21:32 +03:00
2026-06-05 08:23:59 +03:00
2026-06-05 08:23:59 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 13:16:39 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:28:35 +03:00
2026-06-01 20:35:25 +03:00
2026-06-02 23:29:49 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 15:17:33 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 00:08:46 +03:00
2026-06-04 00:08:46 +03:00
2026-06-04 00:08:46 +03:00
2026-06-04 01:08:14 +03:00
2026-06-04 02:32:32 +03:00
2026-06-04 02:57:32 +03:00
2026-06-04 03:21:41 +03:00
2026-06-04 07:54:20 +03:00
2026-06-05 01:01:25 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-03 19:00:39 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 23:14:24 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 22:47:58 +03:00
2026-06-01 20:04:17 +03:00
2026-06-01 20:04:17 +03:00
2026-06-01 20:35:25 +03:00
2026-06-01 20:56:10 +03:00
2026-06-01 22:01:38 +03:00
2026-06-01 22:01:38 +03:00
2026-06-01 22:18:47 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 22:44:20 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 23:24:15 +03:00
2026-06-01 23:24:15 +03:00
2026-06-01 23:29:07 +03:00
2026-06-03 06:42:51 +03:00
2026-06-03 06:31:18 +03:00
2026-06-03 06:42:51 +03:00
2026-06-04 18:31:08 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 10:24:30 +03:00
2026-06-02 10:24:30 +03:00
2026-06-02 10:41:29 +03:00
2026-06-02 10:57:17 +03:00
2026-06-02 10:57:17 +03:00
2026-06-02 15:51:04 +03:00
2026-06-02 16:33:38 +03:00
2026-06-02 17:57:17 +03:00
2026-06-03 19:00:39 +03:00
2026-06-03 19:32:49 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 22:06:56 +03:00
2026-06-04 04:22:43 +03:00
2026-06-04 04:52:42 +03:00
2026-06-04 05:25:19 +03:00
2026-06-04 10:38:21 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 12:31:24 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 14:38:18 +03:00
2026-06-04 15:17:33 +03:00
2026-06-04 19:16:37 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 21:14:35 +03:00
2026-06-05 08:23:59 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 18:31:08 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 15:32:48 +03:00
2026-06-05 01:32:35 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00