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


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

How does 'flattening' come into play when there's only one array? I would think 'unwiding' of an array is what takes place.
  • Comment on Re^3: on the fly reference to subroutine output

Replies are listed 'Best First'.
Re^4: on the fly reference to subroutine output
by tmharish (Friar) on Mar 05, 2013 at 07:54 UTC

    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.