NAME
Tie::File::Indexed::Utf8 - tied array access to indexed data files: utf8-encoded strings
SYNOPSIS
tie
(
my
@data
,
'Tie::File::Indexed::Utf8'
,
$filename
,
%options
) or
die
...
##-- store some utf8 strings
$data
[0] =
"\x{c4}de"
;
$data
[1] =
"\x{0372}\x{2107}\x{01a7}\x{a68c}"
;
##-- strings are retrieved with the UTF-8 flag set
$data
[1];
DESCRIPTION
Tie::File::Indexed::Utf8 provides a Tie::File::Indexed subclass for storing arrays of utf8-encoded strings.
CAVEATS
General caveats
See "CAVEATS" in Tie::File::Indexed for general issues regarding the Tie::File::Indexed base class.
AUTHOR
Bryan Jurish <moocow@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2015 by Bryan Jurish
This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.20.2 or, at your option, any later version of Perl 5 you may have available.