Tagged Questions

8
votes
3answers
156 views

Should I use autobox in Perl?

For those unaware of Perl's autobox, it is a module that gives you methods on built in primitives, and lets you even override them. # primitives 'a string'->toupper(); 10->to(1); # returns [10, …