Thread overview
How Can i see associative array implement , is where has pseudocode write in Dlang?
Dec 29, 2022
lil
Dec 29, 2022
matheus
Dec 29, 2022
Dennis
December 29, 2022

How Can i see associative array implement , is where has pseudocode write in Dlang?

December 29, 2022
On Thursday, 29 December 2022 at 11:24:38 UTC, lil wrote:
> How Can i see associative array  implement , is where  has pseudocode write in Dlang?

Maybe this will help: https://github.com/dlang/phobos/blob/master/std/array.d

Matheus.
December 29, 2022

On Thursday, 29 December 2022 at 11:24:38 UTC, lil wrote:

>

How Can i see associative array implement , is where has pseudocode write in Dlang?

If you're asking for the implementation of Associative Arrays, you can find that in druntime in the rt.aaA module:

https://github.com/dlang/dmd/blob/master/druntime/src/rt/aaA.d

There's no pseudo code of it, but it's a pretty standard hash table.