MCPcopy Create free account
hub / github.com/RenderKit/oidn / isBreakableBefore

Function isBreakableBefore

external/catch.hpp:8471–8474  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8469 return chars.find(c) != std::string::npos;
8470}
8471inline auto isBreakableBefore(char c) -> bool {
8472 static std::string chars = "[({<|";
8473 return chars.find(c) != std::string::npos;
8474}
8475inline auto isBreakableAfter(char c) -> bool {
8476 static std::string chars = "])}>.,:;*+-=&/\\";
8477 return chars.find(c) != std::string::npos;

Callers 1

isBoundaryMethod · 0.85

Calls 1

findMethod · 0.80

Tested by

no test coverage detected