-
Notifications
You must be signed in to change notification settings - Fork 0
Basic datatypes
Grandiras edited this page Aug 19, 2022
·
3 revisions
object
- nothing
- nothing
- Explicit
- nothing
- Implicit
- (not implemented yet)
int
-
Addition
(withInteger
->Integer
, withDouble
->Double
) -
Division
(withInteger
->Integer
, withDouble
->Double
) -
Equal
(withInteger
orDouble
->Boolean
) -
GreaterThan
(withInteger
orDouble
->Boolean
) -
GreaterThanOrEqual
(withInteger
orDouble
->Boolean
) -
LessThan
(withInteger
orDouble
->Boolean
) -
LessThanOrEqual
(withInteger
orDouble
->Boolean
) -
Multiplication
(withInteger
->Integer
, withDouble
->Double
) -
NotEqual
(withInteger
orDouble
->Boolean
) -
Substraction
(withInteger
->Integer
, withDouble
->Double
)
-
Negation
(Integer
->Integer
)
- Explicit
String
Object
- Implicit
- (not implemented yet)
double
-
Addition
(withInteger
orDouble
->Double
) -
Division
(withInteger
orDouble
->Double
) -
Equal
(withInteger
orDouble
->Boolean
) -
GreaterThan
(withInteger
orDouble
->Boolean
) -
GreaterThanOrEqual
(withInteger
orDouble
->Boolean
) -
LessThan
(withInteger
orDouble
->Boolean
) -
LessThanOrEqual
(withInteger
orDouble
->Boolean
) -
Multiplication
(withInteger
orDouble
->Double
) -
NotEqual
(withInteger
orDouble
->Boolean
) -
Substraction
(withInteger
orDouble
->Double
)
-
Negation
(Double
->Double
)
- Explicit
- nothing
- Implicit
- (not implemented yet)
char
-
Addition
(withChar
orString
->String
) -
Equal
(withChar
orString
->Boolean
) -
NotEqual
(withChar
orString
->Boolean
)
- nothing
- Explicit
- nothing
- Implicit
- (not implemented yet)
string
-
Addition
(withChar
orString
->String
) -
Equal
(withChar
orString
->Boolean
) -
NotEqual
(withChar
orString
->Boolean
)
- nothing
- Explicit
- nothing
- Implicit
- (not implemented yet)
bool
-
And
(withBoolean
->Boolean
) -
Equal
(withBoolean
->Boolean
) -
NotEqual
(withBoolean
->Boolean
) -
Or
(withBoolean
->Boolean
)
-
Not
(Boolean
->Boolean
)
- Explicit
- nothing
- Implicit
- (not implemented yet)