File Coverage

blib/lib/ExtUtils/Typemap.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package ExtUtils::Typemap;
2 5     5   114454 use 5.006001;
  5         18  
  5         179  
3 5     5   31 use strict;
  5         9  
  5         178  
4 5     5   33 use warnings;
  5         9  
  5         249  
5             our $VERSION = '1.00';
6 5     5   5085 use ExtUtils::Typemaps;
  5         221675  
  5         321  
7             our @ISA = qw(ExtUtils::Typemaps);
8              
9             =head1 NAME
10              
11             ExtUtils::Typemap - Read/Write/Modify Perl/XS typemap files
12              
13             =head1 SYNOPSIS
14              
15             See C instead!
16              
17             =head1 DESCRIPTION
18              
19             This module exists merely as a compatibility wrapper around
20             L. In a nutshell, C was
21             renamed to C because the F directory
22             in F could collide with the F file on
23             case-insensitive file systems.
24              
25             The C module is part of the L
26             distribution and ships with the standard library of perl starting
27             with perl version 5.16.
28              
29             =head1 SEE ALSO
30              
31             L, L.
32              
33             For details on typemaps: L, L.
34              
35             =head1 AUTHOR
36              
37             Steffen Mueller C<>
38              
39             =head1 COPYRIGHT & LICENSE
40              
41             Copyright 2009, 2010, 2011 Steffen Mueller
42              
43             This program is free software; you can redistribute it and/or
44             modify it under the same terms as Perl itself.
45              
46             =cut
47              
48             1;
49