in reply to Perl's hash table implementation
Hashes live in hv.h and hv.c. I'm not sure what you want to do and how much knowledge of the rest of Perl core is necessary to get there. Mostly, you'll be looking at macros using other macros in hv.h, but if you only aim at the implementation of Perl (memory) hashes, hv.c should be enough, and mostly "real" C code to boot.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl's hash table implementation
by jc (Acolyte) on Oct 07, 2010 at 09:11 UTC | |
by JavaFan (Canon) on Oct 07, 2010 at 09:33 UTC | |
by Anonymous Monk on Oct 07, 2010 at 12:20 UTC |