MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / indent

Method indent

subprojects/llama.cpp/tests/testing.h:29–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27 explicit testing(std::ostream &os = std::cout) : out(os) {}
28
29 std::string indent() const {
30 if (stack.empty()) {
31 return "";
32 }
33 return std::string((stack.size() - 1) * 2, ' ');
34 }
35
36 std::string full_name() const {
37 return string_join(stack, ".");

Callers 2

addViewAdapterMethod · 0.45
toJavaFileMethod · 0.45

Calls 3

stringClass · 0.85
emptyMethod · 0.65
sizeMethod · 0.65

Tested by

no test coverage detected