and method

bool and(
  1. bool val
)

Implementation

bool and(bool val) {
  return this && val;
}