Leon Timmermans
Leon Timmermans
Even MakeMaker got rid of this 20 years ago. Mac OS Classic is long dead.
## The Problem Given the following `Foo.rakumod` ``` my Regex $regex = /ab/; subset Foo where * === $regex; sub foo is export { say $regex ~~ Foo; } ```...
The old one gave all sorts of warnings for me (on clang, with the fallback definition). C11 provides a built-in solution in stdalign.h, which I'm using now instead. Long term...
Once the compiler knows it won't ever change the warning goes away. Personally I would have written this entire thing differently, using something like a vtable and `try_kind`, `transition` and...
This removes the usage of libatomic_ops, in favor of C11 atomics (Added in 7ff15b3e). The main expected impact of this is that it increases the minimum supported version of MSVC...
This replaces `:utf8` with an actually secure layer based on `:utf8_strict` This is a draft for two reasons: 1. This does not work well with the :stdio layer. This is...
Any CLONE method that needs to call `sv_clone()` and friends needs to pass this on as an argument. On older releases such an argument would not be passed, so they...
## The Problem When turning an `IO::Handle` into a stream using `.Supply`, the resulting supply isn't usable when chain with for example `.lines` or `.words`. ## Expected Behavior Lines/words are...
Experience has thought that almost all changes to experimental.pm come from core, hence it's easier for maintenance if we move its upstream to blead, and sync the CPAN version with...
## The Problem The multidispatcher seems to be confused by conversion types if the contraints type is a role with a defined smily (is there a proper name for that)....