in reply to Re: Data::Dump::Streamer Dump in concatenation
in thread Data::Dump::Streamer Dump in concatenation

Are you sure? It says in docs
my $obj=Dump($x,$y); # Returns an object my $str=Dump($x,$y)->Out(); # Returns a string of the dump. my @code=Dump($x,$y); # Returns a list of the dump. Dump($x,$y); # prints the dump. print Dump($x,$y); # prints the dump.

Replies are listed 'Best First'.
Re^3: Data::Dump::Streamer Dump in concatenation
by ikegami (Patriarch) on Jul 18, 2009 at 08:29 UTC
    Ah, so it does. Probably because the author figured many people would try to use it that way anyway. I missed it originally because the first and only appearance of this usage is halfway through the substantial documentation. The docs are very clear that it only works in list context, though. (Anything else would conflict with the normal usages.)
      OIC, thank you, will use Dump()->Out