NAME
Text::Bidi::Array::Byte - Dual-life byte arrays
SYNOPSIS
use Text::Bidi::Array::Byte;
my $a = new Text::Bidi::Array::Byte "abc";
say $a->[1]; # says 98
say $$a; # says abc
say "$a"; # also says abc
DESCRIPTION
This is an derived class of Text::Bidi::Array designed to hold byte
arrays. See Text::Bidi::Array for details on usage of this class. Each element of the array representation corresponds to an octet in the string representation, at the same location.
AUTHOR
Moshe Kamensky (<kamensky@cpan.org>) - Copyright (c) 2013
LICENSE
This program is free software. You may copy or redistribute it under the same terms as Perl itself.