in reply to Re^4: Byte counts and Seek function
in thread Byte counts and Seek function

utf8::xxx functions can be used without "use utf8". it's documented.

Replies are listed 'Best First'.
Re^6: Byte counts and Seek function
by AnomalousMonk (Archbishop) on Sep 01, 2013 at 22:00 UTC

    Interestingly, the utf8::utf8() function is not documented (Strawberry 5.14.4.1, online 5.18.0), although it exists. What does it do?

    Update: Sorry, I was confused by Perl's autovivification behavior.

    >perl -wMstrict -le "print exists &utf8::is_utf8 ? 'yes' : 'no'; print \&utf8::is_utf8; ;; print exists &utf8::utf8 ? 'yes' : 'no'; print \&utf8::utf8; " yes CODE(0x68c66c) no CODE(0x68c17c)