Native types defined by the underlying programming language. More...
Classes | |
class | const |
A qualifier that indicates that the declared value will not be changed by a function. More... | |
class | bool |
Boolean variable that can hold the values 'true' or 'false'. More... | |
class | char |
Variable that stores characters (abcde...01234...) More... | |
class | int |
Integer variable that can hold whole numbers (-inf,+inf) More... | |
class | size_t |
Integer variable that can hold positive whole numbers [0,+inf) More... | |
class | float |
Floating point variable that can hold real numbers (-inf,+inf) at lower precision. More... | |
class | double |
Floating point variable that can hold real numbers (-inf,+inf) at higher precision. More... | |
class | number |
Floating point variable that can hold real numbers (-inf,+inf) at higher precision. More... | |
class | string |
Holds words or longer texts. Essentially an array of char's. More... | |
class | vector |
An array of values (the concrete value type depends on the template paramter) More... | |
Native types defined by the underlying programming language.
class const |
A qualifier that indicates that the declared value will not be changed by a function.
class bool |
Boolean variable that can hold the values 'true' or 'false'.
class char |
Variable that stores characters (abcde...01234...)
class int |
Integer variable that can hold whole numbers (-inf,+inf)
class size_t |
Integer variable that can hold positive whole numbers [0,+inf)
class float |
Floating point variable that can hold real numbers (-inf,+inf) at lower precision.
class double |
Floating point variable that can hold real numbers (-inf,+inf) at higher precision.
class number |
Floating point variable that can hold real numbers (-inf,+inf) at higher precision.
class string |
Holds words or longer texts. Essentially an array of char's.
class vector |
An array of values (the concrete value type depends on the template paramter)