Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PyMesh/PyMesh
/ eat_white_space
Method
eat_white_space
src/IO/IOUtils.cpp:35–41 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
33
}
34
35
void IOUtils::eat_white_space(std::ifstream& fin) {
36
char next = fin.peek();
37
while (next ==
'\n'
|| next ==
' '
|| next ==
'\t'
|| next ==
'\r'
) {
38
fin.get();
39
next = fin.peek();
40
}
41
}
Callers
nothing calls this directly
Calls
1
get
Method · 0.45
Tested by
no test coverage detected