s/byte/bytes/g remnants
[p5sagit/p5-mst-13.2.git] / lib / bytes.pm
1 package bytes;
2
3 sub import {
4     $^H |= 0x00000008;
5 }
6
7 sub unimport {
8     $^H &= ~0x00000008;
9 }
10
11 sub AUTOLOAD {
12     require "bytes_heavy.pl";
13     goto &$AUTOLOAD;
14 }
15
16 sub length ($);
17
18 1;
19 __END__
20
21 =head1 NAME
22
23 bytes - Perl pragma to force byte semantics rather than character semantics
24
25 =head1 SYNOPSIS
26
27     use bytes;
28     no bytes;
29
30 =head1 DESCRIPTION
31
32 WARNING: The implementation of Unicode support in Perl is incomplete.
33 Expect sudden and unannounced changes!
34
35 The C<use bytes> pragma disables character semantics for the rest of the
36 lexical scope in which it appears.  C<no bytes> can be used to reverse
37 the effect of C<use bytes> within the current lexical scope.
38
39 Perl normally assumes character semantics in the presence of
40 character data (i.e. data that has come from a source that has
41 been marked as being of a particular character encoding).
42
43 To understand the implications and differences between character
44 semantics and byte semantics, see L<perlunicode>.
45
46 =head1 SEE ALSO
47
48 L<perlunicode>, L<utf8>
49
50 =cut