operator & method

Integer operator &(
  1. Integer y
)

Implementation

Integer operator &(Integer y) => Integer(value & y.value);