Lines Matching defs:bytes
1 package bytes;
5 $bytes::hint_bits = 0x00000008;
8 $^H |= $bytes::hint_bits;
12 $^H &= ~$bytes::hint_bits;
32 bytes - Perl pragma to force byte semantics rather than character semantics
36 use bytes;
37 ... chr(...); # or bytes::chr
38 ... index(...); # or bytes::index
39 ... length(...); # or bytes::length
40 ... ord(...); # or bytes::ord
41 ... rindex(...); # or bytes::rindex
42 ... substr(...); # or bytes::substr
43 no bytes;
48 The C<use bytes> pragma disables character semantics for the rest of the
49 lexical scope in which it appears. C<no bytes> can be used to reverse
50 the effect of C<use bytes> within the current lexical scope.
54 being of a particular character encoding). When C<use bytes> is in
56 as a series of bytes.
61 C<bytes> pragma, $x is treated as a series of bytes - the bytes that make
68 use bytes; # or "require bytes; bytes::length()"
80 bytes::substr() does not work as an lvalue().