MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/TriangleMeshDistance / isBreakableBefore

Function isBreakableBefore

tests/catch.hpp:6373–6376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6371 return chars.find(c) != std::string::npos;
6372}
6373inline auto isBreakableBefore(char c) -> bool {
6374 static std::string chars = "[({<|";
6375 return chars.find(c) != std::string::npos;
6376}
6377inline auto isBreakableAfter(char c) -> bool {
6378 static std::string chars = "])}>.,:;*+-=&/\\";
6379 return chars.find(c) != std::string::npos;

Callers 1

isBoundaryMethod · 0.85

Calls 1

findMethod · 0.80

Tested by

no test coverage detected