| blib/lib/Hash/BulkKeyCopy.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 14 | 14 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 5 | 5 | 100.0 |
| pod | n/a | ||
| total | 19 | 19 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Hash::BulkKeyCopy; | ||||||
| 2 | 3 | 3 | 27922 | use 5.008001; | |||
| 3 | 6 | ||||||
| 3 | 3 | 3 | 10 | use strict; | |||
| 3 | 3 | ||||||
| 3 | 51 | ||||||
| 4 | 3 | 3 | 17 | use warnings; | |||
| 3 | 3 | ||||||
| 3 | 64 | ||||||
| 5 | 3 | 3 | 10 | use Exporter 'import'; | |||
| 3 | 2 | ||||||
| 3 | 135 | ||||||
| 6 | |||||||
| 7 | our $VERSION = "0.011"; | ||||||
| 8 | |||||||
| 9 | our @EXPORT_OK = qw/hash_bulk_keycopy/; | ||||||
| 10 | |||||||
| 11 | 3 | 3 | 11 | use XSLoader; | |||
| 3 | 2 | ||||||
| 3 | 95 | ||||||
| 12 | XSLoader::load(__PACKAGE__, $VERSION); | ||||||
| 13 | |||||||
| 14 | 1; | ||||||
| 15 | __END__ |