Qore Programming Language Reference Manual  0.9.3
Pseudo_QC_Int.dox.h
1 namespace Qore {
4 /***/
5 class <int> : public <value> {
6 
7 public:
9 
23 int abs();
24 
25 public:
27 
43 binary encodeLsb(int size = 4);
44 
45 public:
47 
63 binary encodeMsb(int size = 4);
64 
65 public:
67 
93 string format(string fmt);
94 
95 public:
97 
121 string format(int prec = 2, string decimal_sep = ".", string thousands_sep = "");
122 
123 public:
125 
136 bool intp();
137 
138 public:
140 
152 int sign();
153 
154 public:
156 
167 bool strp();
168 
169 public:
171 
206 string toBase(int base = 10);
207 
208 public:
210 
224 string toUnicode();
225 
226 public:
228 
242 int typeCode();
243 
244 public:
246 
260 bool val();
261 };
262 };
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:5
Methods in this pseudo-class can be executed on integer values.
Definition: Pseudo_QC_Int.dox.h:5
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:2
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...