http://www.perlmonks.org?node_id=1021663


in reply to Re: on the fly reference to subroutine output
in thread on the fly reference to subroutine output

Just as a note - this beautiful solution works cause Perl flattens arrays.

You can see that when you do:

sub2( [ sub1(), (), () ] );

Replies are listed 'Best First'.
Re^3: on the fly reference to subroutine output
by ISAI student (Scribe) on Mar 04, 2013 at 15:12 UTC
    Thank you all. It does the "magic".
Re^3: on the fly reference to subroutine output
by 7stud (Deacon) on Mar 05, 2013 at 02:45 UTC
    How does 'flattening' come into play when there's only one array? I would think 'unwiding' of an array is what takes place.

      There are two arrays ( one inside the other ). The outer array is the anonymous array as shown below:

      sub2( [ sub1() ] ); ^ ^ | | | --------- Inner array ------------ Outer array
      sub 2 now gets the ref of the outer anonymous array which is flattened.