| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-09-22 | assert_unsafe_precondition: fix some incorrect check_language_ub | Ralf Jung | -1/+1 | |
| 2025-09-12 | Constify Eq, Ord, PartialOrd | Evgenii Zheltonozhskii | -1/+2 | |
| 2025-09-01 | Constify conversion traits | ltdk | -1/+1 | |
| 2025-08-05 | Add `std::ascii::Char` `MIN` and `MAX` constants | Chai T. Rex | -0/+8 | |
| 2025-08-05 | Add `u8`-as-ASCII methods to `core::ascii::Char` | Chai T. Rex | -1/+603 | |
| 2025-07-21 | Constify Try, From, TryFrom | Evgenii Zheltonozhskii | -1/+2 | |
| 2025-05-21 | Add some track_caller info to precondition panics | Ben Kimock | -0/+1 | |
| 2024-10-09 | Add more precondition check tests | Ben Kimock | -1/+1 | |
| 2024-08-21 | Use `assert_unsafe_precondition!` in `AsciiChar::digit_unchecked` | Chai T. Rex | -3/+7 | |
| 2024-08-09 | core: optimise Debug impl for ascii::Char | Michal Nazarewicz | -19/+13 | |
| Rather than writing character at a time, optimise Debug implementation for core::ascii::Char such that it writes the entire representation as with a single write_str call. With that, add tests for Display and Debug implementations. | ||||
| 2024-02-13 | implement `Default` for `AsciiChar` | joseLuĂs | -1/+1 | |
| 2024-01-25 | core: add `From<core::ascii::char>` implementations | Michal Nazarewicz | -0/+16 | |
| Introduce `From<core::ascii::char>` implementations for all unsigned numeric types and `char`. This matches the API of `char` type. Issue: https://github.com/rust-lang/rust/issues/110998 | ||||
| 2023-09-01 | fix `Debug` impl for `AsciiChar` | soqb | -2/+39 | |
| 2023-08-08 | Rename copying `ascii::Char` methods from `as_` to `to_` | Alyssa Haroldsen | -2/+2 | |
| Tracking issue: #110998. The [API guidelines][naming] describe `as` as used for borrowed -> borrowed operations, and `to_` for owned -> owned operations on `Copy` types. [naming]: https://rust-lang.github.io/api-guidelines/naming.html | ||||
| 2023-05-03 | Add the basic `ascii::Char` type | Scott McMurray | -0/+565 | |
