in reply to Re^4: Dereferencing a portion of a hash
in thread Dereferencing a portion of a hash
my %report_data = ( $domain => { $provider => { 'error' => '0', ... # other stuff here } } }
...
All data in Perl is a scalar, an array of scalars, or a hash of scalars
...
Although a scalar may not directly hold multiple values, it may contain a reference to an array or hash which in turn contains multiple values.
...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Dereferencing a portion of a hash
by THRAK (Monk) on Feb 18, 2005 at 18:53 UTC |