or method

bool or(
  1. bool val
)

Implementation

bool or(bool val) {
  return this || val;
}