• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Scalar/H23-Jul-2017-375142

t/H23-Jul-2017-150128

.gitignoreH A D23-Jul-2017160 1413

Build.PLH A D23-Jul-20172 KiB8985

ChangesH A D23-Jul-20171.7 KiB6436

MANIFESTH A D23-Jul-2017222 1716

META.jsonH A D23-Jul-20171.6 KiB7069

META.ymlH A D23-Jul-2017957 4443

READMEH A D23-Jul-2017980 4026

SIGNATUREH A D23-Jul-20171.5 KiB3932

README

1NAME
2
3Scalar::String - string aspects of scalars
4
5DESCRIPTION
6
7This module is about the string part of plain Perl scalars.  A scalar has
8a string value, which is notionally a sequence of Unicode codepoints, but
9may be internally encoded in either ISO-8859-1 or UTF-8.  In places, and
10more so in older versions of Perl, the internal encoding shows through.
11To fully understand Perl strings it is necessary to understand these
12implementation details.
13
14This module provides functions to classify a string by encoding and to
15encode a string in a desired way.
16
17This module is implemented in XS, with a pure Perl backup version for
18systems that can't handle XS.
19
20INSTALLATION
21
22	perl Build.PL
23	./Build
24	./Build test
25	./Build install
26
27AUTHOR
28
29Andrew Main (Zefram) <zefram@fysh.org>
30
31COPYRIGHT
32
33Copyright (C) 2009, 2010, 2011, 2017
34Andrew Main (Zefram) <zefram@fysh.org>
35
36LICENSE
37
38This module is free software; you can redistribute it and/or modify it
39under the same terms as Perl itself.
40