operator ^ method

Integer operator ^(
  1. Integer other
)

Implementation

Integer operator ^(Integer other) => Integer(_value ^ other._value);