File Coverage

blib/lib/FFI/Platypus/API.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 FFI::Platypus::API;
2              
3 2     2   222750 use strict;
  2         4  
  2         82  
4 2     2   11 use warnings;
  2         7  
  2         94  
5 2     2   37 use 5.008004;
  2         8  
6 2     2   883 use FFI::Platypus;
  2         5  
  2         118  
7 2     2   15 use Exporter qw( import );
  2         4  
  2         298  
8              
9             our @EXPORT = grep /^arguments_/, keys %FFI::Platypus::API::;
10              
11             # ABSTRACT: Platypus arguments and return value API for custom types
12             our $VERSION = '2.11'; # VERSION
13              
14              
15             1;
16              
17             __END__