public IntExpression ShiftRight(IntExpression rhs) { return(Shift.Create(this, rhs, false)); }
/// <summary> /// operator<< not overridable in the way I would like /// </summary> public IntExpression ShiftLeft(IntExpression rhs) { return(Shift.Create(this, rhs, true)); }