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

2022-12-29 Thread Dennis via Digitalmars-d-learn

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.


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

2022-12-29 Thread matheus via Digitalmars-d-learn

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.


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

2022-12-29 Thread lil via Digitalmars-d-learn
How Can i see associative array  implement , is where  has 
pseudocode write in Dlang?