« Home » « Learn » « Download » « Github »
c_int
int64_t c_int(var self);
Returns the object self represented as a int64_t.
self
int64_t
Usage
printf("%li", c_int($I(5))); /* 5 */ printf("%li", c_int($I(6))); /* 6 */
Interpret as C Integer
The C_Int class should be overridden by types which are representable as a C style Integer of the type int64_t.
C_Int
struct C_Int { int64_t (*c_int)(var); };
Back