use list to check for whitespaceness instead of extended || conditions
lose use of variable to keep ordat value
use the fact that ordat returns -1 when checking after the end of string
Makes parsing CPAN's 'projects.json' about 2x as fast: (from 0.45 to 0.21 wallclock seconds), which is even faster than my hyper approach with JSON::Fast
Simplify
nom-ws
||
conditionsordat
valueordat
returns-1
when checking after the end of stringMakes parsing CPAN's 'projects.json' about 2x as fast: (from 0.45 to 0.21 wallclock seconds), which is even faster than my
hyper
approach withJSON::Fast