mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-18 01:46:08 +08:00
Optimised string_view::find_first_not_of & string_view::find_last_not_of
This commit is contained in:
parent
a5560b2ce1
commit
4f440a429e
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user