-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document UInt return type of objectid #40669
Conversation
Looks like it |
I'm confused - what's the return type of those two functions on a 32-Bit system? |
That's right, it returns a |
Looking through Maybe there are more undocumented cases of methods not agreeing across systems, even though they're from the same version? |
@Seelengrab Unfortunately I am not the right person to ask (not a computer scientist), but you could restart this discussion on https://discourse.julialang.org/ to reach people who also understand this subject! |
(cherry picked from commit 0fa39ec)
(cherry picked from commit 0fa39ec)
It took me some time to figure out that
objectid
returns aUInt
.typeof(objectid(123))
gave me the false belief that the return type isUInt64
.Is the return type for
hash
also fixed toUInt
?