doc/wg/core/notes/core-notes-2023-01-27.md
Attendees:
usize or something like u16.u32 everywhere and not usize,
then we discovered Rust gets mad at us for that.usize because that's what Rust uses for array
length and indices.u32 but the realities of Rust make that
impractical.usize implement Into<u32> on systems where that works?TryFrom, not From.usize for consistency.usize it is.usize and u16 are TryFrom each other, even when they're
compatible.try/finally thing.\n to reduce string
literals.