MCPcopy Create free account
hub / github.com/Icinga/icinga2 / BooleanToString

Function BooleanToString

lib/base/boolean-script.cpp:12–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10using namespace icinga;
11
12static String BooleanToString()
13{
14 ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
15 bool self = vframe->Self;
16 return self ? "true" : "false";
17}
18
19Object::Ptr Boolean::GetPrototype()
20{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected