1Text::Bidi::Array::ByteU(s3e)r Contributed Perl DocumentaTteixotn::Bidi::Array::Byte(3)
2
3
4
6 Text::Bidi::Array::Byte - Dual-life byte arrays
7
9 version 2.15
10
12 use Text::Bidi::Array::Byte;
13 my $a = new Text::Bidi::Array::Byte "abc";
14 say $a->[1]; # says 98
15 say $$a; # says abc
16 say "$a"; # also says abc
17
19 This is an derived class of Text::Bidi::Array designed to hold "byte"
20 arrays. See Text::Bidi::Array for details on usage of this class. Each
21 element of the array representation corresponds to an octet in the
22 string representation, at the same location.
23
25 Moshe Kamensky <kamensky@cpan.org>
26
28 This software is copyright (c) 2015 by Moshe Kamensky.
29
30 This is free software; you can redistribute it and/or modify it under
31 the same terms as the Perl 5 programming language system itself.
32
33
34
35perl v5.32.1 2021-01-27 Text::Bidi::Array::Byte(3)