Joy Online Manual
NAME |
LongLong - Represents a C long long UnsignedLongLong - Represents a C unsigned long long |
DESCRIPTION |
Because 64-bit integer values cannot be converted to JavaScript numbers without losing digits, Joy will wrap them into special JavaScript objects of the LongLong and UnsignedLongLong types. You can create your own objects of that type by calling the constructor (with a number or string argument), using an integer literal constant with the size letters LL or ULL, or by using a type cast.
Joy guarantees that you can pass long integers from C to JavaScript and back again unchanged, but (at least in the present release of Joy) you cannot safely do arithmetic on them. |
Index |