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


in reply to Re^4: wantarray alternative
in thread wantarray alternative

before I answer this, please clarify which is the result expected for

  $name = lowercase( 'Jim',"Jeff" ) ;

???

Cheers Rolf

( addicted to the Perl Programming Language)

Replies are listed 'Best First'.
Re^6: wantarray alternative
by tqisjim (Beadle) on Jul 10, 2013 at 21:04 UTC

    OK, since the day is shot anyway...

    What do experienced programmers expect? It seems like there was a lot of confusion on CB about the first or last element (both wrong).

    I expect the answer is 2, which I've confirmed by testing. But obviously, I've seen the source code.

    If I were looking at that statement without seeing the source code, I would have to test or read the source code to expect anything at all. Since the statement is called lowercase (I might've used convert_to_lowercase), one is unlikely to use this function to count the number of input arguments. So intuitively, the statement should not return 2. In summary, the point of my effort.

    The solution I'd prefer to implement would return Jim. But the most robust answer would probably be to throw an exception.

      > The solution I'd prefer to implement would return Jim.

      so first code-example in Re: wantarray alternative (Context propagation)

      > But the most robust answer would probably be to throw an exception.

      so check wantarray to do so

      Cheers Rolf

      ( addicted to the Perl Programming Language)