Top "Uint64" questions

The uint64 is a datatype that represents an unsigned integer and is coded on 64 bits in memory.

Convert unsigned long long to double in C

I realize this question could be processor dependent, but hopefully someone can point me in the right direction. For the …

c double type-conversion c99 uint64
Convert string to *uint64 in golang

Assume there is a string holding the address of an uint64 type variable, can we parse this address back to …

string pointers go uint64
How to define an unsigned 64-bit integer in Delphi7?

In Delphi 7, int64s are signed, if I try to declare a hex constant larger than $8000000000000000 (eg, what is really …

delphi uint64
Converting (u)int64_t to NSNumbers

So essentially my question is this, I am creating an NSMutableDictionary using uint64_t objects as the key. Is there …

cocoa nsnumber uint64
Go: convert uint64 to int64 without loss of information

The problem with the following code: var x uint64 = 18446744073709551615 var y int64 = int64(x) is that y is -1. Without …

random go int64 uint64
std::atoll with VC++

I have been using std::atoll from cstdlib to convert a string to an int64_t with gcc. That function …

c++ int64 uint64 strtol
C++: Convert std::string to UINT64

I need to convert a (decimal, if it matters) string representation of a number input from a text file to …

c++ string uint64
Are there uint64 literals in Go?

I'm looking at the numeric types in Go. I want to use uint64 literals. Is this possible in Go? Here's …

go long-integer literals unsigned uint64