| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::ConvertingRadix; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
345850
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
183
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
6
|
|
|
|
|
|
|
our $DATE = '2023-08-06'; # DATE |
|
7
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-ConvertingRadix'; # DIST |
|
8
|
|
|
|
|
|
|
our $VERSION = '0.002'; # VERSION |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $LIST = { |
|
11
|
|
|
|
|
|
|
summary => 'List of modules to convert the radix (base) of a number from one to another', |
|
12
|
|
|
|
|
|
|
entries => [ |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
{ |
|
15
|
|
|
|
|
|
|
module=>'Math::Numseq::RadixConversion', |
|
16
|
|
|
|
|
|
|
description=><<'_', |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
The list of dependencies seem too much for a simple task: from |
|
19
|
|
|
|
|
|
|
to , , and so on. |
|
20
|
|
|
|
|
|
|
This is because the module is part of the distribution of a large family of |
|
21
|
|
|
|
|
|
|
Math::Numseq::* modules. |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
_ |
|
24
|
|
|
|
|
|
|
}, |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
{ |
|
27
|
|
|
|
|
|
|
module=>'Number::AnyBase', |
|
28
|
|
|
|
|
|
|
description=><<'_', |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Has one non-core dependency: . |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
_ |
|
33
|
|
|
|
|
|
|
}, |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
{ |
|
36
|
|
|
|
|
|
|
module=>'Math::NumberBase', |
|
37
|
|
|
|
|
|
|
description=><<'_', |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
No non-core dependency. The OO interface annoys me slightly. |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
_ |
|
42
|
|
|
|
|
|
|
}, |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
], |
|
45
|
|
|
|
|
|
|
}; |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
1; |
|
48
|
|
|
|
|
|
|
# ABSTRACT: List of modules to convert the radix (base) of a number from one to another |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
__END__ |