Optimised string_view::find_first_not_of & string_view::find_last_not_of

This commit is contained in:
John Wellbelove 2024-04-09 14:45:35 +01:00
parent a5560b2ce1
commit 4f440a429e

View File

@ -662,6 +662,7 @@ namespace etl
if (mbegin[i] == view[j])
{
found = true;
break;
}
}
@ -715,6 +716,7 @@ namespace etl
if (mbegin[position] == view[j])
{
found = true;
break;
}
}