File Coverage

blib/lib/Alien/gperf.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1 1     1   117104 use strict;
  1         1  
  1         26  
2 1     1   4 use warnings;
  1         2  
  1         44  
3             package Alien::gperf;
4              
5             # ABSTRACT: Perl distribution for GNU gperf
6             our $VERSION = '0.005'; # VERSION
7              
8 1     1   4 use parent 'Alien::Base';
  1         2  
  1         6  
9              
10             =pod
11              
12             =encoding utf8
13              
14             =head1 NAME
15              
16             Alien::gperf - Perl distribution for GNU gperf
17              
18             =head1 USAGE
19              
20             use Alien::gperf;
21             use Env qw( @PATH );
22              
23             unshift @PATH, Alien::gperf->bin_dir;
24             system gperf, '--version';
25              
26             =head1 DESCRIPTION
27            
28             GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single string comparison only.
29              
30             =cut
31              
32             1;
33             __END__