diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-26 19:54:48 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-26 19:54:48 +0000 |
commit | 8f675a64451b3c11c234adeda6be313fb8d03f6c (patch) | |
tree | 701fd72b4f0ed95c891264108a1b9fc231f2674b /t | |
parent | 2c45f8e1be053d3d2fa453b2278c7225f1689f9c (diff) | |
download | perl-8f675a64451b3c11c234adeda6be313fb8d03f6c.tar.gz |
Upgrade to Math::BigInt 1.56, Math::BigRat 0.05,
and bignum 0.11, from Tels.
p4raw-id: //depot/perl@15523
Diffstat (limited to 't')
-rw-r--r-- | t/lib/Math/BigInt/Subclass.pm | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/t/lib/Math/BigInt/Subclass.pm b/t/lib/Math/BigInt/Subclass.pm index 0ec798b2ef..688ad23769 100644 --- a/t/lib/Math/BigInt/Subclass.pm +++ b/t/lib/Math/BigInt/Subclass.pm @@ -6,12 +6,12 @@ require 5.005_02; use strict; use Exporter; -use Math::BigInt(1.49); +use Math::BigInt(1.56); use vars qw($VERSION @ISA $PACKAGE @EXPORT_OK $accuracy $precision $round_mode $div_scale); @ISA = qw(Exporter Math::BigInt); -@EXPORT_OK = qw(bgcd); +@EXPORT_OK = qw(bgcd objectify); $VERSION = 0.03; @@ -46,11 +46,36 @@ sub blcm Math::BigInt::blcm(@_); } +BEGIN + { + *objectify = \&Math::BigInt::objectify; + + # these are called by AUTOLOAD from BigFloat, so we need at least these. + # We cheat, of course.. + *bneg = \&Math::BigInt::bneg; + *babs = \&Math::BigInt::babs; + *bnan = \&Math::BigInt::bnan; + *binf = \&Math::BigInt::binf; + *bzero = \&Math::BigInt::bzero; + *bone = \&Math::BigInt::bone; + } + sub import { my $self = shift; - $self->SUPER::import(@_); # need it for subclasses - #$self->export_to_level(1,$self,@_); # need this ? + + my @a; my $t = 0; + foreach (@_) + { + $t = 0, next if $t == 1; + if ($_ eq 'lib') + { + $t = 1; next; + } + push @a,$_; + } + $self->SUPER::import(@a); # need it for subclasses + $self->export_to_level(1,$self,@a); # need this ? } 1; |