Skip Menu |

This queue is for tickets about the FreezeThaw CPAN distribution.

Report information
The Basics
Id: 76175
Status: new
Priority: 0/
Queue: FreezeThaw

People
Owner: Nobody in particular
Requestors: IKEGAMI [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: thaw in scalar context
my $y = thaw(freeze($x)); is equivalent to my $y = 1; I would recommend the following behaviour instead: my $y = ( thaw(freeze($x)) )[0]; - Eric Ref: http://stackoverflow.com/questions/9949826