Bit-testing on ARM64.
In the previous article we've looked at how different compilers handle
int isHtmlWhitespace(int ch) {
return ch == 0x0009 || ch == 0x000A ||
ch == 0x000C || ch == 0x000D ||
ch == 0x0020;
}
on x86 CPU architecture.
But as A...
softwarebits.hashnode.dev3 min read