2010/1/29 <[email protected]>: > Hi, > > I see there is Integer::New and Integer::NewFromUnsigned, but both are > for 32bit integers. How can I input a 64 bit integer into V8?
At the moment you have to convert it to a double precision floating point number. Note that the language doesn't support 64 bit integers. You get 53 bit integers as doubles. Above that the precision is missing in the low bits. > > ry > > -- > v8-users mailing list > [email protected] > http://groups.google.com/group/v8-users > -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
