File Coverage

blib/lib/Math/BigFloat/Constant.pm
Criterion Covered Total %
statement 18 24 75.0
branch 2 6 33.3
condition n/a
subroutine 6 6 100.0
pod 2 2 100.0
total 28 38 73.6


line stmt bran cond sub pod time code
1             # -*- mode: perl; -*-
2              
3             package Math::BigFloat::Constant;
4              
5 2     2   134902 use strict;
  2         25  
  2         57  
6 2     2   16 use warnings;
  2         4  
  2         75  
7              
8             our $VERSION = '1.15';
9              
10 2     2   2602 use Math::BigFloat '1.999802';
  2         146059  
  2         10  
11             our @ISA = qw( Math::BigFloat );
12              
13 2     2   53275 use overload; # inherit from Math::BigFloat
  2         7  
  2         12  
14              
15             ##############################################################################
16             # We Are a True Math::BigFloat, But Thou Shallst Not Modify Us
17              
18             sub modify {
19 35     35 1 76277 my ($self, $method) = @_;
20              
21 35 50       89 unless (defined $method) {
22 0         0 my @callinfo = caller(0);
23 0         0 for (my $i = 1 ; ; ++$i) {
24 0         0 my @next = caller($i);
25 0 0       0 last unless @next;
26 0         0 @callinfo = @next;
27             }
28 0         0 $method = $callinfo[3];
29             }
30              
31 35         136 die("Can not modify ", ref($self), " $self via $method()\n");
32             }
33              
34             ##############################################################################
35             # But cloning us creates a modifyable Math::BigInt, so that overload works
36              
37             sub copy {
38 6     6 1 25889 my $x = shift;
39              
40 6 50       20 return Math::BigFloat->new($x) unless ref($x);
41 6         18 Math::BigFloat->copy($x);
42             }
43              
44             1;
45              
46             __END__