bitwiseXorAssign method

Expression bitwiseXorAssign(
  1. Expression other
)

Return this ^= other.

Implementation

Expression bitwiseXorAssign(Expression other) =>
    BinaryExpression._(this, other, '^=');