pommicket
pommicket
Taking the specification literally, the glob `*.py` would not match `foo/bar.py` since `foo/bar` includes the slash character. The C library for editorconfig adds `**/` to the start of the glob...
# Proposal ## Problem statement Currently, to use mathematical constants such as π, you need to use `std::f32::consts::PI`. This proposal is for adding associated constants to the `f32` and `f64`...
The "triangles" data generator is currently broken and marked as "to-update"; this PR should fix it. addRays was also marked as to-update, but seems to work fine as-is.
and use it instead of `clippy::only_used_in_recursion` when the parameter in question is self. Fixes rust-lang/rust-clippy#10370 changelog: [`only_used_in_recursion`]: Don't lint if parameter is `self`; add pedantic `self_only_used_in_recursion` lint.
Fixes #229 FYI: This uses the `syscall.SyscallN` function (instead of the deprecated Syscall5, etc.) to simplify the code a bit. That function was introduced in go1.18. I'm not sure if...