Convert the given bool (1 or 0) to a JsonnetJsonValue.
JsonneD jd = JsonneD(); JsonnetValue sv = jd.makeBool(true); assert(sv.extractBool().get()); sv = jd.makeBool(false); assert(!sv.extractBool().get());
See Implementation
Convert the given bool (1 or 0) to a JsonnetJsonValue.