despacer icon indicating copy to clipboard operation
despacer copied to clipboard

C library to remove white space from strings as fast as possible

Results 7 despacer issues
Sort by recently updated
recently updated
newest added

Amazing, amazing work! Just thought of mentioning here that I would love to see this tweaked a bit such that, with the help of your simdprune library, one could find...

Because they are whitespaces just like \n and \r.

help wanted

http://lemire.me/blog/2017/07/10/pruning-spaces-faster-on-arm-processors-with-vector-table-lookups/

The CMake file uses `-march=native`, which generates binaries that are not usable on other machines that might lack the instruction set. I think the better approach would be to use...

Use unsigned types to store the result of popcnt and movemask because otherwise we will get a movsx to sign-extend these values (when we subsequently use them as indices into...

MSVC doesn't have `-march=native` option so all the definitions are ignored resulting in no SIMD being used. This assumes that AVX2 is supported, which is a good compromise until runtime...