Scalar operators

This commit is contained in:
Michael Schimmel
2025-09-15 16:44:40 +02:00
parent 101dbec760
commit a83d3bf9fc
3 changed files with 89 additions and 87 deletions
-4
View File
@@ -9,10 +9,6 @@ uses
Myc.Data.Value;
type
// Operators and helpers
TBinaryOperator = (boAdd, boSubtract, boMultiply, boDivide, boEqual, boNotEqual, boLess, boGreater, boLessOrEqual, boGreaterOrEqual);
TUnaryOperator = (uoNegate, uoNot);
TBinaryOperatorHelper = record helper for TBinaryOperator
function ToString: string;
end;