| Filename | C:/tmp64ng/perl/lib/bytes.pm | 
| Statements | Executed 5 statements in 0s | 
| Calls | P | F | Exclusive Time  | 
        Inclusive Time  | 
        Subroutine | 
|---|---|---|---|---|---|
| 0 | 0 | 0 | 0s | 0s | bytes::AUTOLOAD | 
| 2 | 2 | 2 | 0s | 0s | bytes::import | 
| 0 | 0 | 0 | 0s | 0s | bytes::unimport | 
| Line | State ments  | 
      Time on line  | 
      Calls | Time in subs  | 
      Code | 
|---|---|---|---|---|---|
| 1 | package bytes; | ||||
| 2 | |||||
| 3 | 1 | 0s | our $VERSION = '1.04'; | ||
| 4 | |||||
| 5 | 1 | 0s | $bytes::hint_bits = 0x00000008; | ||
| 6 | |||||
| 7 | # spent 0s within bytes::import which was called 2 times, avg 0s/call:
#    once (0s+0s) by Encode::utf8::BEGIN@349 at line 349 of Encode.pm
#    once (0s+0s) by JSON::PP::BEGIN@667 at line 667 of JSON/PP.pm  | ||||
| 8 | 2 | 0s | $^H |= $bytes::hint_bits; | ||
| 9 | } | ||||
| 10 | |||||
| 11 | sub unimport { | ||||
| 12 | $^H &= ~$bytes::hint_bits; | ||||
| 13 | } | ||||
| 14 | |||||
| 15 | sub AUTOLOAD { | ||||
| 16 | require "bytes_heavy.pl"; | ||||
| 17 | goto &$AUTOLOAD if defined &$AUTOLOAD; | ||||
| 18 | require Carp; | ||||
| 19 | Carp::croak("Undefined subroutine $AUTOLOAD called"); | ||||
| 20 | } | ||||
| 21 | |||||
| 22 | sub length (_); | ||||
| 23 | sub chr (_); | ||||
| 24 | sub ord (_); | ||||
| 25 | sub substr ($$;$$); | ||||
| 26 | sub index ($$;$); | ||||
| 27 | sub rindex ($$;$); | ||||
| 28 | |||||
| 29 | 1 | 0s | 1; | ||
| 30 | __END__ |