ProMesh User Manual  v4.3.19
native types

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...
 

Detailed Description

Native types defined by the underlying programming language.


Class Documentation

◆ const

class const

A qualifier that indicates that the declared value will not be changed by a function.

◆ bool

class bool

Boolean variable that can hold the values 'true' or 'false'.

◆ char

class char

Variable that stores characters (abcde...01234...)

◆ int

class int

Integer variable that can hold whole numbers (-inf,+inf)

◆ size_t

class size_t

Integer variable that can hold positive whole numbers [0,+inf)

◆ float

class float

Floating point variable that can hold real numbers (-inf,+inf) at lower precision.

◆ double

class double

Floating point variable that can hold real numbers (-inf,+inf) at higher precision.

◆ number

class number

Floating point variable that can hold real numbers (-inf,+inf) at higher precision.

◆ string

class string

Holds words or longer texts. Essentially an array of char's.

◆ vector

class vector

An array of values (the concrete value type depends on the template paramter)