forked from bjornbytes/graphql-lua
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Description says
Line 311 in cd0f6e4
"Long can represent values from -(2^52) to 2^52 - 1, inclusive.", |
(Same here: https://github.com/tarantool/graphql/wiki/Long)
But in fact Long
can work with LL/ULL types and represent larger values
Lines 289 to 293 in cd0f6e4
if ffi.istype('int64_t', value) then | |
return true | |
elseif ffi.istype('uint64_t', value) then | |
return value < 2^63 | |
end |
See also #55
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation