intToBool static method

bool intToBool(
  1. int input
)

Implementation

static bool intToBool(int input) {
  return input >= 1;
}