Daniel Lemire's blogThe fastest way to match characters on ARM processors?source
Daniel Lemire's blog
The fastest way to match characters on ARM processors?
Consider the following problem. Given a string, you must match all of the ASCII white-space characters (\t, \n, \r, and the space) and some characters important in JSON (:, ,, [, ], {, }). JSON is a text-based data format used for web services. A toy JSON…