logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Text::Bidi::Array::Byte - Dual-life byte arrays

Author

       Moshe Kamensky <kamensky@cpan.org>

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.

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

Version

       version 2.18

See Also