Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ARM-software/ComputeLibrary
/ ltrim
Function
ltrim
src/runtime/CL/mlgo/MLGOParser.cpp:75–78 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
73
namespace
74
{
75
void ltrim(std::string &str)
76
{
77
str.erase(str.begin(), std::find_if(str.begin(), str.end(), [](char ch) { return !std::isspace(ch); }));
78
}
79
80
void rtrim(std::string &str)
81
{
Callers
1
trim
Function · 0.85
Calls
2
begin
Method · 0.45
end
Method · 0.45
Tested by
no test coverage detected