1Text::Bidi::Array::LongU(s3e)r Contributed Perl DocumentaTteixotn::Bidi::Array::Long(3)
2
3
4
6 Text::Bidi::Array::Long - Dual-life long arrays
7
9 version 2.18
10
12 use Text::Bidi::Array::Long;
13 my $a = new Text::Bidi::Array::Long "abc";
14 say $a->[0]; # says 6513249 (possibly)
15 say $a->[1]; # says 0
16 say $$a; # says abc
17 say "$a"; # also says abc
18
20 This is an derived class of Text::Bidi::Array designed to hold "long"
21 arrays. See Text::Bidi::Array for details on usage of this class. Each
22 element of the array representation corresponds to 4 octets in the
23 string representation. The 4 octets are packed in the endianness of the
24 native machine.
25
27 Moshe Kamensky <kamensky@cpan.org>
28
30 This software is copyright (c) 2015 by Moshe Kamensky.
31
32 This is free software; you can redistribute it and/or modify it under
33 the same terms as the Perl 5 programming language system itself.
34
35
36
37perl v5.38.0 2023-07-21 Text::Bidi::Array::Long(3)