I have a var blah = ctypes.UInt64('65')
, the 65 is really anything. I need to do math on that, but when I do:
console.log(blah * ctypes.UInt64('2')
it removes the ctypes.UInt64
wrap. I need to keep that wrap so I can pass it into something else, I know I can re-wrap it, but whats the proper way to do math on UInt64
and Int64
please.