| Age | Commit message (Expand) | Author | Lines |
| 2023-10-26 | Refactor some `char`, `u8` ascii functions to be branchless | okaneco | -3/+6 |
| 2023-10-15 | Auto merge of #110729 - ColinFinck:decode-utf16-fused-iterator, r=dtolnay | bors | -0/+4 |
| 2023-10-03 | Bump version placeholders | Mark Rousskov | -1/+1 |
| 2023-09-08 | Auto merge of #114299 - clarfonthey:char-min, r=dtolnay,BurntSushi | bors | -1/+51 |
| 2023-07-31 | I'm mathematically challenged | ltdk | -2/+2 |
| 2023-07-31 | Can't compare usize and u32 | ltdk | -2/+2 |
| 2023-07-31 | Use u32::from for MIN/MAX examples | ltdk | -2/+2 |
| 2023-07-31 | Add note on gap for MIN/MAX | ltdk | -0/+35 |
| 2023-07-31 | Add char::MIN | ltdk | -0/+15 |
| 2023-07-25 | `impl TryFrom<char> for u16` | Lukas Markeffsky | -2/+36 |
| 2023-05-12 | `ascii::Char`-ify the escaping code | Scott McMurray | -23/+24 |
| 2023-05-04 | Rollup merge of #111009 - scottmcm:ascii-char, r=BurntSushi | Matthias Krüger | -0/+19 |
| 2023-05-03 | Add the basic `ascii::Char` type | Scott McMurray | -0/+19 |
| 2023-05-02 | Rollup merge of #105076 - mina86:a, r=scottmcm | Dylan DPC | -176/+132 |
| 2023-04-30 | review | Michal Nazarewicz | -7/+7 |
| 2023-04-24 | Implement FusedIterator for DecodeUtf16 when the inner iterator does | Colin Finck | -0/+4 |
| 2023-04-16 | rm const traits in libcore | Deadbeef | -8/+4 |
| 2023-04-05 | Refactor core::char::EscapeDefault and co. structures | Michal Nazarewicz | -176/+132 |
| 2023-02-12 | Auto merge of #105671 - lukas-code:depreciate-char, r=scottmcm | bors | -25/+7 |
| 2023-02-10 | Remove a couple of `#[doc(hidden)] pub fn` and their `#[feature]` gates | Tobias Bucher | -15/+13 |
| 2023-01-14 | Use associated items of `char` instead of freestanding items in `core::char` | Lukas Markeffsky | -25/+7 |
| 2022-12-28 | update stabilization version numbers | Pietro Albini | -5/+5 |
| 2022-12-23 | char: µoptimise UTF-16 surrogates decoding | Michal Nazarewicz | -1/+1 |
| 2022-11-14 | Rollup merge of #102470 - est31:stabilize_const_char_convert, r=joshtriplett | Matthias Krüger | -8/+7 |
| 2022-10-16 | Clarify the possible return values of len_utf16 | Sky | -0/+5 |
| 2022-09-29 | Stabilize const_char_convert | est31 | -5/+5 |
| 2022-09-29 | Split out from_u32_unchecked from const_char_convert | est31 | -3/+2 |
| 2022-09-27 | introduce `{char, u8}::is_ascii_octdigit` | Akshay | -0/+32 |
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -4/+0 |
| 2022-09-04 | Make `char::is_lowercase` and `char::is_uppercase` const | Sage Mitchell | -2/+20 |
| 2022-08-22 | Move error trait into core | Jane Losare-Lusby | -0/+17 |
| 2022-08-20 | Improve primitive/std docs separation and headers | Cameron Steffen | -1/+3 |
| 2022-08-09 | docs: remove repetition | Vincenzo Palazzo | -2/+1 |
| 2022-07-28 | add more docs regarding ideographic numbers | Vincenzo Palazzo | -1/+11 |
| 2022-07-05 | Fix links in std/core documentation | Guillaume Gomez | -2/+2 |
| 2022-04-16 | No need to check the assert all the time. | Giles Cope | -1/+1 |
| 2022-04-10 | Rollup merge of #95566 - eduardosm:std_char_consts_and_methods, r=Mark-Simula... | Dylan DPC | -203/+54 |
| 2022-04-07 | Auto merge of #95678 - pietroalbini:pa-1.62.0-bootstrap, r=Mark-Simulacrum | bors | -1/+0 |
| 2022-04-06 | Update documentation for `trim*` and `is_whitespace` to include newlines | Deadbeef | -0/+3 |
| 2022-04-05 | trivial cfg(bootstrap) changes | Pietro Albini | -1/+0 |
| 2022-04-01 | Avoid duplication of doc comments in `std::char` constants and functions. | Eduardo Sánchez Muñoz | -203/+54 |
| 2022-03-31 | Adjust feature names that disagree on const stabilization version | David Tolnay | -1/+1 |
| 2022-03-30 | remove now unnecessary lang items | lcnr | -1/+1 |
| 2022-03-27 | Debug print char 0 as '\0' rather than '\u{0}' | David Tolnay | -0/+1 |
| 2022-03-21 | Add u16::is_utf16_surrogate | ltdk | -2/+2 |
| 2022-03-11 | Rollup merge of #87618 - GuillaumeGomez:std-char-types-doc, r=jyn514,camelid | Dylan DPC | -1/+6 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -5/+5 |
| 2022-03-07 | Add missing documentation for std::char types | Guillaume Gomez | -1/+6 |
| 2022-02-17 | fix | Mario Carneiro | -2/+0 |
| 2022-02-17 | Optimize char_try_from_u32 | Mario Carneiro | -1/+14 |