in reply to Re: UTF-8 for Everything
in thread UTF-8 for Everything

Sadly, not part of the standards modules. ☹

Replies are listed 'Best First'.
Re^3: UTF-8 for Everything
by tobyink (Canon) on Jul 06, 2013 at 15:00 UTC

    But everything utf8::all does is achievable with core modules. Take a look at the utf8::all source code and replicate what it does.

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
Re^3: UTF-8 for Everything (even you)
by Anonymous Monk on Jul 06, 2013 at 23:08 UTC