cancername

Results 16 issues of cancername

In line with #18067, add checked equivalents to `*AssumeCapacity` for working with non-resizable `ArrayListUnmanaged`s.

### Zig Version 0.12.0-dev.1753+a98d4a66e ### Steps to Reproduce and Observed Behavior Compile the following using `zig build-obj -target mipsel-freestanding -O ReleaseFast -femit-asm` ```zig export fn int_cast(x: i32) i16 { return...

bug
optimization
arch-mips
backend-llvm

```zig const std = @import("std"); const zigimg = @import("zigimg"); pub fn main() !void { const i = zigimg.Image{ .allocator = undefined, .width = 1, .height = 1, .pixels = .{.grayscale1...

- Why is the interface to a codec done at runtime? All codecs need to be known at compile-time anyway. - Why does every format necessarily have encoding and decoding...

Closes #157 - [x] I *understand* the code that I have edited, and have the means to test it before making changes to Concord. ## Testing? ![image](https://github.com/Cogmasters/concord/assets/119271574/1a62f490-14e2-4197-b907-a4e22eaeaad3)

enhancement

### tl;dr user-specified memory functions are hyperbased for a whole host of reasons, we've thoroughly discussed it in the discord, and I will make a PR to implement them Soon™...

enhancement

`partialMatch` does not match after newlines: ``` const std = @import("std"); const Regex = @import("zig-regex/src/regex.zig").Regex; test "partialMatch after newlines" { var reg = try Regex.compile(std.testing.allocator, "a"); defer reg.deinit(); try std.testing.expect(try...

bug

For previous discussion of this change, see #18907 and #18889. Prompted by #18880.