Qhull
view release on metacpan or search on metacpan
"Carp" : "0",
"Eval::Closure" : "0",
"Exporter::Shiny" : "0",
"Exporter::Tiny" : "0",
"Feature::Compat::Defer" : "0",
"File::Slurper" : "0",
"File::Spec" : "0",
"List::Util" : "0",
"Log::Any" : "0",
"Readonly::Tiny" : "0",
"Ref::Util" : "0",
"Regexp::Common" : "0",
"Scalar::Util" : "0",
"Storable" : "0",
"System::Command" : "0",
"constant" : "0",
"experimental" : "0",
"namespace::clean" : "0",
"parent" : "0",
"perl" : "v5.26.0",
"strict" : "0",
Carp: '0'
Eval::Closure: '0'
Exporter::Shiny: '0'
Exporter::Tiny: '0'
Feature::Compat::Defer: '0'
File::Slurper: '0'
File::Spec: '0'
List::Util: '0'
Log::Any: '0'
Readonly::Tiny: '0'
Ref::Util: '0'
Regexp::Common: '0'
Scalar::Util: '0'
Storable: '0'
System::Command: '0'
constant: '0'
experimental: '0'
namespace::clean: '0'
parent: '0'
perl: v5.26.0
strict: '0'
[AutoPrereqs]
[Prereqs]
Alien::Qhull = 8.0.2.2
CXC::Exporter::Util = 0.05
Eval::Closure = 0
Exporter::Shiny = 0
Feature::Compat::Defer = 0
Log::Any = 0
Readonly::Tiny = 0
Ref::Util = 0
Regexp::Common = 0
Storable = 0
System::Command = 0
namespace::clean = 0
[Prereqs / ConfigureRequires ]
Module::Build::Tiny = 0
[Prereqs / TestRequires]
Test2::V0 = 0
lib/Qhull/PP.pm view on Meta::CPAN
use strict;
use warnings;
use experimental 'signatures', 'lexical_subs', 'declared_refs';
our $VERSION = '0.07';
use Exporter::Shiny 'qhull';
use Scalar::Util 'blessed';
use Ref::Util 'is_arrayref';
use List::Util 'any';
use Log::Any '$log';
use Eval::Closure 'eval_closure';
use Ref::Util 'is_hashref', 'is_plain_arrayref';
use File::Spec;
use Qhull::Util 'parse_output';
use Qhull::Util::Options 'CAT_OUTPUT_FORMAT';
use Qhull::Options;
use System::Command;
use Feature::Compat::Defer;
use Alien::Qhull;
my sub croak {
lib/Qhull/Util.pm view on Meta::CPAN
package Qhull::Util;
# ABSTRACT: Various bits and pieces
use v5.26;
use strict;
use warnings;
use experimental 'signatures', 'lexical_subs', 'declared_refs', 'refaliasing';
use Ref::Util qw( is_arrayref is_hashref );
use Log::Any '$log';
our $VERSION = '0.07';
use Qhull::Util::Options ':all';
use Exporter::Shiny qw( parse_output supported_output_format );
our @CARP_NOT = qw( Qhull::PP Qhull::Options );
lib/Qhull/Util/Options.pm view on Meta::CPAN
use Log::Any '$log';
our $VERSION = '0.07';
use parent 'Exporter::Tiny';
use Readonly::Tiny 'readonly';
use Regexp::Common 'number';
use List::Util 'first';
use CXC::Exporter::Util ':all';
use Ref::Util 'is_arrayref', 'is_hashref';
our @CARP_NOT = qw( Qhull::PP Qhull::Options );
BEGIN {
install_CONSTANTS( {
CATEGORIES => {
map { ( "CAT_\U$_" => $_ ) }
qw(
compute
control
t/00-report-prereqs.dd view on Meta::CPAN
'Carp' => '0',
'Eval::Closure' => '0',
'Exporter::Shiny' => '0',
'Exporter::Tiny' => '0',
'Feature::Compat::Defer' => '0',
'File::Slurper' => '0',
'File::Spec' => '0',
'List::Util' => '0',
'Log::Any' => '0',
'Readonly::Tiny' => '0',
'Ref::Util' => '0',
'Regexp::Common' => '0',
'Scalar::Util' => '0',
'Storable' => '0',
'System::Command' => '0',
'constant' => '0',
'experimental' => '0',
'namespace::clean' => '0',
'parent' => '0',
'perl' => 'v5.26.0',
'strict' => '0',
( run in 0.533 second using v1.01-cache-2.11-cpan-a5abf4f5562 )