Sukera
Sukera
> There are 3 broken tests, which I don't know how to fix, or identify from the compiler message The known-broken tests relate to shrinking of `BigFloat` & `BigInt` and...
Yeah, that can be done. I'm not happy with the current function names either, but noone complained about the names so far :shrug: Is there a style checker that could...
I originally used `filter(f, i; trim)` (i.e., a keyword), but back when I wrote this filtering on the (so far undocumented, but that should be done at some point) `Tree`...
Thanks, that looks like a nice base! Would be perfect if this can somehow incorporate the "checking" part of the package as well, but please don't feel like you need...
That may be true, but on the other hand, these uses relying on ASCII-only are all undocumented assumptions :/ Worse, `isdigit` refers to `isletter`, which does specify that it's about...
Looking through all those old PRs/issue, maybe @stevengj has some additional context/guidance here :)
There are more than just the ASCII decimal digits in Unicode, hence the example above with a 4 from a different script ;) Both that 4 and the ASCII 4...
> The TOML parser is bugged with this: > `ERROR: StringIndexError: invalid index [3], valid nearby indices [1]=>'4', [4]=>'='` > a string consisting of only digits can no longer be...
> The TOML spec is here https://toml.io/en/v1.0.0#keys Thanks for pointing that out! Seems like the version I linked is the in-development version, so a future version of TOML is likely...
> It seems we already have it: isnumeric No, that returns `true` for any category that's numeric, this Pr is specifically about numeric decimal digits. E.g. `ⅳ` is `isnumeric`, but...