File Coverage

blib/lib/Acme/CPANModules/MatchingString.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Acme::CPANModules::MatchingString;
2              
3 1     1   394402 use strict;
  1         2  
  1         237  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2024-01-10'; # DATE
7             our $DIST = 'Acme-CPANModules-MatchingString'; # DIST
8             our $VERSION = '0.001'; # VERSION
9              
10             our $LIST = {
11             summary => "List of modules related to matching string",
12             entries => [
13             {
14             module => 'String::FlexMatch',
15             description => <<'MARKDOWN',
16              
17             An object that can be instructed to match a string with another string, a regex,
18             or a coderef. The object overloads the `eq` operator so you can abstract the
19             actual matching mechanism and still use `eq` in your code. Does not yet provide
20             case-insensitive string vs string matching.
21              
22             MARKDOWN
23             },
24             {
25             module => 'String::Util::Match',
26             description => <<'MARKDOWN',
27              
28             Provide some routines related to matching string.
29              
30             MARKDOWN
31             },
32             {
33             module => 'match::simple',
34             description => <<'MARKDOWN',
35              
36             A smart-match implementation.
37              
38             MARKDOWN
39             },
40             {
41             module => 'match::smart',
42             description => <<'MARKDOWN',
43              
44             A smart-match implementation.
45              
46             MARKDOWN
47             },
48             ],
49             };
50              
51             1;
52             # ABSTRACT: List of modules related to matching string
53              
54             __END__