-
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(withIntegerorDouble->Boolean) -
GreaterThan(withIntegerorDouble->Boolean) -
GreaterThanOrEqual(withIntegerorDouble->Boolean) -
LessThan(withIntegerorDouble->Boolean) -
LessThanOrEqual(withIntegerorDouble->Boolean) -
Multiplication(withInteger->Integer, withDouble->Double) -
NotEqual(withIntegerorDouble->Boolean) -
Substraction(withInteger->Integer, withDouble->Double)
-
Negation(Integer->Integer)
- Explicit
StringObject
- Implicit
- (not implemented yet)
double
-
Addition(withIntegerorDouble->Double) -
Division(withIntegerorDouble->Double) -
Equal(withIntegerorDouble->Boolean) -
GreaterThan(withIntegerorDouble->Boolean) -
GreaterThanOrEqual(withIntegerorDouble->Boolean) -
LessThan(withIntegerorDouble->Boolean) -
LessThanOrEqual(withIntegerorDouble->Boolean) -
Multiplication(withIntegerorDouble->Double) -
NotEqual(withIntegerorDouble->Boolean) -
Substraction(withIntegerorDouble->Double)
-
Negation(Double->Double)
- Explicit
- nothing
- Implicit
- (not implemented yet)
char
-
Addition(withCharorString->String) -
Equal(withCharorString->Boolean) -
NotEqual(withCharorString->Boolean)
- nothing
- Explicit
- nothing
- Implicit
- (not implemented yet)
string
-
Addition(withCharorString->String) -
Equal(withCharorString->Boolean) -
NotEqual(withCharorString->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)