in reply to Re: Re: Of Symbol Tables and Globs
in thread Of Symbol Tables and Globs
I think saying "lexical (my), and dynamic (use vars, our (with caveats), undeclared (except under use strict), all subs, direct playing with globs (see below), filehandles/dirhandles, and formats)" would do the trick. You might just want to say "(all others)" instead of listing all of those.
Also, more importantly, you've got a terminology mismatch in the whole document: symbol tables aren't like hashes, they are hashes. %main:: (AKA %::, which you might want to mention explicitly) is a hash. *main::{somevar} isn't a hash, it's a hash element, which contains a glob, which is like a hash in many ways.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: Of Symbol Tables and Globs
by broquaint (Abbot) on Nov 09, 2002 at 16:18 UTC | |
by theorbtwo (Prior) on Nov 09, 2002 at 20:42 UTC | |
by broquaint (Abbot) on Nov 11, 2002 at 11:40 UTC |