Added float versions of operators
This commit is contained in:
parent
a3b271c948
commit
58d601fc96
1 changed files with 6 additions and 0 deletions
|
@ -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…
Reference in a new issue