Expressions\Cpp\Scope.cs (4)
60return !EvaluateSide(Right!, ToBool);
62return EvaluateSides(Left!, Right!, ToBool, (x, y) => x && y);
64return EvaluateSides(Left!, Right!, ToBool, (x, y) => x || y);
66return EvaluateSides(Left!, Right!, ToBool, (x, y) => x ^ y);