Meghan Denny
Meghan Denny
it is not an alias. `Source Code` header shows source for just the decl that's active and `[src]` at the top shows the whole file it's contained in.
the source code is listed as: ```zig pub fn ArrayList(comptime T: type) type { return array_list.Aligned(T, null); } ``` so https://ziglang.org/documentation/master/std/#std.array_list.Aligned will be the page you're expecting
i think he's also asking whats currently preventing you from doing `extern "foo" fn bar() void;` ?
what is this adding over the name of the function?
llvm has experimental support for m68k, zig doesn't support it out of the box yet but there's a flag if you build zig yourself
`./build/stage3/bin/zig build -Dllvm-has-m68k -Dno-lib`, there's no cmake option currently
https://github.com/codespell-project/codespell looks like a popular and actively maintained option and has a `-w` flag to write the changes `stefanzweifel/git-auto-commit-action@v5` is a handy github action to make commits after making changes...
dont have stats on how common this is but felt it was worth mentioning this would break the following code ```zig var x: isize = -24; x = @abs(x); ```
is `sass-embedded-linux-x64` from an optionalDependency or built inside of a postinstall script?