122 string format(
int prec = 2,
string decimal_sep =
".",
string thousands_sep =
"");
207 string toBase(
int base = 10);
bool strp()
Returns True because integer values can be converted to strings.
int typeCode()
Returns Qore::NT_INT.
string toBase(int base=10)
Converts the integer to a different base (and returns it as a string).
Methods in this pseudo-class are available to be executed on any value type (even NOTHING); this is t...
Definition: Pseudo_QC_All.dox.h:6
Methods in this pseudo-class can be executed on integer values.
Definition: Pseudo_QC_Int.dox.h:6
string toUnicode()
Returns a single character string in UTF-8 encoding for the integer value treated as a unicode value...
binary binary()
Always returns an empty binary object (of zero length)
binary encodeLsb(int size=4)
returns a binary object with the integer encoded in the given number of bytes in least significant by...
string format(string fmt)
Returns a formatted string of the integer according to the format argument.
int sign()
Returns -1 if the number is negative, 0 if it is zero, or 1 if it is positive.
binary encodeMsb(int size=4)
returns a binary object with the integer encoded in the given number of bytes in most significant byt...
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
bool val()
Returns True if the int is non-zero, False if zero.
bool intp()
Returns True by default.
int abs()
Returns the absolute value of the number.
int size()
Returns zero; this method will be reimplemented in container types where it may return a non-zero val...