Re: RFC 148 (v1) Add reshape() for multi-dimensional array reshaping

[email protected] (Daniel Chetlin)
Newsgroups perl.perl6.language.data
Message-ID <[email protected]>
On Fri, Aug 25, 2000 at 07:35:24PM -0700, Nathan Wiger wrote:
> > > > $a[$i][$j][$k] or $a[$i,$j,$k]
>
> > The second one has no useful meeting, "," is just an operator which
> > does nothing much useful in this context.
> 
> Not true, at least not in the Perl I know. :-) Here's a description of
> what these do in Perl just to clarify:
> 
>    $a[0][1][2];      # get a single multidimensional element
>    $a[0,1,2];        # get elements 0, 1, and 2 of @a

perl -le'@a=(1..5);$,=" .. ",print @a[1,2,3];print $a[1,2,3]'
2 .. 3 .. 4
4

perl -wle'@a=(1..5);$,=" .. ",print @a[1,2,3];print $a[1,2,3]'
Multidimensional syntax $a[1,2,3] not supported at -e line 1.
Useless use of a constant in void context at -e line 1.
2 .. 3 .. 4
4

-dlc
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.