On Sunday, 30 December 2018 at 05:54:05 UTC, Neia Neutuladh wrote:
On Sun, 30 Dec 2018 05:36:41 +, Enjoys Math wrote:
Is it:
typeof(T).getHash(&o)?
This gets the hashcode for the object by calling toHash() on it.
Or does that do something other than just get the address?
It XORs the a
On Sun, 30 Dec 2018 05:36:41 +, Enjoys Math wrote:
> Is it:
>
> typeof(T).getHash(&o)?
This gets the hashcode for the object by calling toHash() on it.
> Or does that do something other than just get the address?
It XORs the address with a bitwise rotation of the address. This reduces
coll
I am creating a custom graph database for our app. It holds not
one huge graph but a collection of independent graphs. I would
like to be able to delete them without looping through a range of
billions of Graph class references.
How can I accomplish this with an AA and hasing?
Is it:
typeof