Jason Beetham
Jason Beetham
I'd suggest building a debug compiler and compiling the code, can atleast give more information than these error defects.
Any chance this could emit a warning without the define, that way it does not surprise anyone when it eventually becomes the default?
The issue is that `param_compare` is a generic and has a procedure type that is a closure. As it's a closure it requires a conversion and Nim does not do...
Before something like iterutils is in the stdlib more thought needs to be put into the mechanism that enables it. https://github.com/nim-lang/Nim/pull/21627 this seems very hacky and needs someone to reasonably...
The thing with in place operations is that they have to return the same type as they yield so `mapI` is ill-named. You can never do `string.mapI(parseInt)`, it's more aptly...