in reply to Re: What's this line means in HTTP::headers? ("the context")
in thread What's this line means in HTTP::headers?

Also I know the context meaning in some cases saying

my $var = @array

But here in specific case:

return @old if wantarray;
Does that mean if wantarray is always true? since @old is always an array?

Replies are listed 'Best First'.
Re^3: What's this line means in HTTP::headers? ("the context")
by Anonymous Monk on Sep 05, 2013 at 06:35 UTC
    No. wantarray has nothing to do with @old, it has to do with how sub header is called, in what context.