Types¶
Standard¶
-
type
void
¶ An empty type.
- Python:
None
- Java:
void
- .Net:
void
- Python:
-
type
bool
¶ A boolean true or false value
- Python:
bool
- Java:
boolean
- .Net:
System.Boolean
- Python:
-
type
int
¶ A 32bit integer value
- Python:
int
- Java:
int
- .Net:
System.Int
- Python:
-
type
float
¶ A 32bit floating point value
- Python:
float
- Java:
float
- .Net:
System.Float
- Python:
-
type
std::
string
¶ A standard template library string
- Python:
str
- Java:
java.lang.String
- .Net:
System.String
- Python:
-
type
std::
vector<std::string>
¶ A standard template library vector of strings
- Python:
list
ofstr
- Java:
- .Net:
System.Generics.List<System.String>
- Python:
-
type
std::
vector<float>
¶ A standard template library vector of floats
- Python:
list
offloat
- Java:
- .Net:
System.Generics.List<System.Float>
- Python: