cancername
cancername
In line with #18067, add checked equivalents to `*AssumeCapacity` for working with non-resizable `ArrayListUnmanaged`s.
Add doc comments. Add tests.
### 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...
```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? 
### 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™...
[bug] partialMatch does not match if text that would ordinarily be matched is preceded by newlines
`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...
For previous discussion of this change, see #18907 and #18889. Prompted by #18880.