MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / isBreakableBefore

Function isBreakableBefore

Bcore/src/main/cpp/Dobby/tests/catch.hpp:5069–5072  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5067 return chars.find(c) != std::string::npos;
5068}
5069inline auto isBreakableBefore(char c) -> bool {
5070 static std::string chars = "[({<|";
5071 return chars.find(c) != std::string::npos;
5072}
5073inline auto isBreakableAfter(char c) -> bool {
5074 static std::string chars = "])}>.,:;*+-=&/\\";
5075 return chars.find(c) != std::string::npos;

Callers 1

isBoundaryMethod · 0.85

Calls 1

findMethod · 0.45

Tested by

no test coverage detected