fn ⌃ ⌥
fn ⌃ ⌥
Fixes #489 The issue here is that the autocorrections for `Style/VerboseBlock` and `Performance/MinMaxAfterMap` are overlapping. For `Performance/MinMaxAfterMap`, we (1) replace `map` with `max_of` and (2) remove `.max`. ``` list.map {...
Added `str*` functions not included in #23847: `strspn`, `strcspn`, `strpbrk`, `strstr`, `strtok`, `strtok_r` Related: https://github.com/ziglang/zig/issues/2879
Also: - `c_ushort` for `c_short` - `c_uint` for `c_int` - `c_ulong` for `c_long` - `c_ulonglong` for `c_longlong` Given an `isize` argument, `@abs` now returns a `usize` instead of a `u*`...
Based on [Sema.zig](https://github.com/ziglang/zig/blob/e7b18a7/src/Sema.zig#L33353)
Currently, the xv6 book contains GitHub URLs that look like this: `https://github.com/mit-pdos/xv6-riscv/blob/riscv//user/sh.c` (Note the extra `/` between `riscv` and `user`.)