Thread overview
Do we have GC-free hash map implementation sitting somewhere?
Oct 15, 2012
Jacob Carlborg
Oct 16, 2012
Benjamin Thaut
October 15, 2012
Hi,

Is there a GC-free hash map implementation for D somewhere on the intertubes? (Preferably in a Git repository and under a liberal/non-viral license.)

-- 
Alex Rønne Petersen
alex@lycus.org
http://lycus.org
October 15, 2012
On 15-10-2012 08:49, Alex Rønne Petersen wrote:
> Hi,
>
> Is there a GC-free hash map implementation for D somewhere on the
> intertubes? (Preferably in a Git repository and under a
> liberal/non-viral license.)
>

... s/have/have a/ ...

-- 
Alex Rønne Petersen
alex@lycus.org
http://lycus.org
October 15, 2012
On 2012-10-15 08:49, Alex Rønne Petersen wrote:
> Hi,
>
> Is there a GC-free hash map implementation for D somewhere on the
> intertubes? (Preferably in a Git repository and under a
> liberal/non-viral license.)
>

It looks like Martin Nowak has that in his SharedRuntime branch of druntime:

https://github.com/dawgfoto/druntime/blob/SharedRuntime/src/rt/util/container.d#L428

Don't know if you can extract that.

-- 
/Jacob Carlborg
October 16, 2012
Am 15.10.2012 08:49, schrieb Alex Rønne Petersen:
> Hi,
>
> Is there a GC-free hash map implementation for D somewhere on the
> intertubes? (Preferably in a Git repository and under a
> liberal/non-viral license.)
>

https://github.com/Ingrater/druntime/blob/master/src/core/hashmap.d

Kind Regards
Benjamin Thaut