lower static method

int lower(
  1. bool value
)

Implementation

static int lower(bool value) {
  return value ? 1 : 0;
}