in reply to Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Dereference an array reference
in thread Dereference an array reference

well, if you want the whole array of $var in @names do my @names = @{$var}; That will dereference the array
                - Ant
  • Comment on Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Dereference an array reference
  • Download Code

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Dereference an array reference
by fmogavero (Monk) on Apr 20, 2001 at 00:20 UTC
    Actually $var doesn't need an array. It just needs to be the current value of the $self->tsids for the current iteration.
      so it could be an array or a scalar or a hash or whatever?
                      - Ant