Brian Orora

Results 5 issues of Brian Orora

this documentation for `Context` in `ArrayHashMap` seems to suggest the `eql` function takes 2 args but the compiler complains that it needs 3 arguments. https://github.com/ziglang/zig/blob/6a65561e3e5f82f126ec4795e5cd9c07392b457b/lib/std/array_hash_map.zig#L70-L77

docs

not sure but this zig highlight queries seems to in the wrong order. I believe the intention was for the second query to be an exception for the first `BUILTINIDENTIFIER`...

C-enhancement
A-language-support

the zig langauge has aggregate destructing feature for tuples and arrays https://ziglang.org/download/0.12.0/release-notes.html#Aggregate-Destructuring allows this ```zig const x, const y = .{1, "two"}; ```