readBool method

bool readBool()

Fetch a bool value from the bytes list

Implementation

bool readBool() {
  return bytes[ip++] == 0 ? false : true;
}