1 # Copyright © 2013, 2015 Guillem Jover <guillem@debian.org>
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <https://www.gnu.org/licenses/>.
21 our $VERSION = '0.01';
27 list => [ qw(any none) ],
30 use Exporter qw(import);
32 # XXX: Ideally we would use List::MoreUtils, but that's not a core module,
33 # so to avoid the additional dependency we'll make do with the following
34 # trivial reimplementations.
36 # These got added to List::Util 1.33, which got merged into perl 5.20.0,
37 # once that is in Debian oldstable we can switch to that core module.
43 return 1 if $code->();
53 return 0 if $code->();