Added float versions of operators

master
Cédric Pasteur 14 years ago
parent a3b271c948
commit 58d601fc96

@ -14,11 +14,17 @@ val fun (-.)(float;float) returns (float)
val fun (/)(int;int) returns (int)
val fun (/.)(float;float) returns (float)
val fun (<=)(int;int) returns (bool)
val fun (<=.)(float;float) returns (bool)
val fun (<)(int;int) returns (bool)
val fun (<.)(float;float) returns (bool)
val fun (<>)(int;int) returns (bool)
val fun (<>.)(float;float) returns (bool)
val fun (=)(int;int) returns (bool)
val fun (=.)(float;float) returns (bool)
val fun (>=)(int;int) returns (bool)
val fun (>=.)(float;float) returns (bool)
val fun (>)(int;int) returns (bool)
val fun (>.)(float;float) returns (bool)
val fun (not)(bool) returns (bool)
val fun (or)(bool;bool) returns (bool)
val fun (~-)(int) returns (int)

Loading…
Cancel
Save