boolValue function

Value boolValue(
  1. bool b
)

Implementation

Value boolValue(bool b) {
  return Value(type: Value_Type.BOOL, bool_2: b);
}