Skip to content
#

cpp-library

Here are 986 public repositories matching this topic...

eve
DenisYaroshevskiy
DenisYaroshevskiy commented Nov 5, 2021

Good first issue?

There is this trick for writing is_space with x86 when architecture supports > ssse3

auto is_space(uchars_16 v) -> eve::logical<uchars_16>
{
  uchars_16 lookup_table {[](int i, int) {
    // Fill in the register based on element index
    if (i == ('\t' & 0xf)) return '\t';
    if (i == ('\n' & 0xf)) return '\n';
    if (i == ('\r' & 0xf)) return '\r';
    r
enhancement good first issue arch:x86

Improve this page

Add a description, image, and links to the cpp-library topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cpp-library topic, visit your repo's landing page and select "manage topics."

Learn more