and method

Boolean and(
  1. Boolean other
)

Performs a logical AND operation.

other the other Boolean

Implementation

Boolean and(Boolean other) => Boolean(_value && other._value);