On Thu, 26 Dec 2002, Roderick A. Anderson wrote:
> On 24 Dec 2002, Tkil wrote:
>
> > | elsif ( @$aref == 1 )
> > | {
> > | print "found domain: '$aref->[0][0]' \n";
> > | }
>
> The syntax
>
> $domain_array->[0][0]
I could be wrong, but my understanding is that this is equivalent to:
$domain_array[0][0]
which looks far nicer to my (C++ trained_) eyes
I think it is also equivalent to:
$domain_array->[0]->[0]
which sort of makes the internal structure clearer.
Anyways, this is getting way off topic think! :)
Paul