JsonneD.makeBool

Convert the given bool (1 or 0) to a JsonnetJsonValue.

struct JsonneD
makeBool
(
bool v
)

Examples

JsonneD jd = JsonneD();
JsonnetValue sv = jd.makeBool(true);
assert(sv.extractBool().get());

sv = jd.makeBool(false);
assert(!sv.extractBool().get());

Meta