my
$x
;
note(
'class method, without upgrading'
);
$x
= Math::BigInt -> bpi();
is(
$x
,
'3'
,
'$x = Math::BigInt -> bpi()'
);
is(
ref
(
$x
),
'Math::BigInt'
,
'$x is a Math::BigInt'
);
$x
= Math::BigInt -> bpi(10);
is(
$x
,
'3'
,
'$x = Math::BigInt -> bpi(10)'
);
is(
ref
(
$x
),
'Math::BigInt'
,
'$x is a Math::BigInt'
);
note(
'class method, with upgrading'
);
Math::BigInt -> upgrade(
'Math::BigFloat'
);
$x
= Math::BigInt -> bpi();
is(
$x
,
'3.141592653589793238462643383279502884197'
,
'$x = Math::BigInt -> bpi()'
);
is(
ref
(
$x
),
"Math::BigFloat"
,
'$x is a Math::BigFloat'
);
$x
= Math::BigInt -> bpi(10);
is(
$x
,
'3.141592654'
,
'$x = Math::BigInt -> bpi(10)'
);
is(
ref
(
$x
),
"Math::BigFloat"
,
'$x is a Math::BigFloat'
);
$x
= Math::BigInt -> bpi(
undef
, -9);
is(
$x
,
'3.141592654'
,
'$x = Math::BigInt -> bpi(undef, -9)'
);
is(
ref
(
$x
),
"Math::BigFloat"
,
'$x is a Math::BigFloat'
);
Math::BigInt -> upgrade(
undef
);
note(
'instance method, without upgrading'
);
my
$y
;
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi();
is(
$x
,
'3'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi();'
);
is(
ref
(
$x
),
'Math::BigInt'
,
'$x is a Math::BigInt'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi(10);
is(
$x
,
'3'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi(10);'
);
is(
ref
(
$x
),
'Math::BigInt'
,
'$x is a Math::BigInt'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);
note(
'instance method, with upgrading'
);
Math::BigInt -> upgrade(
'Math::BigFloat'
);
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi();
is(
$x
,
'3.141592653589793238462643383279502884197'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi();'
);
is(
ref
(
$x
),
"Math::BigFloat"
,
'$x is a Math::BigFloat'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi(10);
is(
$x
,
'3.141592654'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi(10);'
);
is(
ref
(
$x
),
"Math::BigFloat"
,
'$y is a Math::BigFloat'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi(
undef
, -9);
is(
$x
,
'3.141592654'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi(undef, -9);'
);
is(
ref
(
$x
),
"Math::BigFloat"
,
'$y is a Math::BigFloat'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi(1);
is(
$x
,
'3'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi(10);'
);
is(
ref
(
$x
),
"Math::BigFloat"
,
'$y is a Math::BigFloat'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi(
undef
, 0);
is(
$x
,
'3'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi(undef, 0);'
);
is(
ref
(
$x
),
"Math::BigFloat"
,
'$y is a Math::BigFloat'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);
note(
'instance method, with upgrading and downgrading'
);
Math::BigFloat -> downgrade(
"Math::BigInt"
);
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi(1);
is(
$x
,
'3'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi(1);'
);
is(
ref
(
$x
),
"Math::BigInt"
,
'$y is a Math::BigInt'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);
$x
= Math::BigInt -> new(100);
$y
=
$x
-> bpi(
undef
, 0);
is(
$x
,
'3'
,
'$x = Math::BigInt -> new(100); $y = $x -> bpi(undef, 0);'
);
is(
ref
(
$x
),
"Math::BigInt"
,
'$y is a Math::BigInt'
);
is(refaddr(
$x
), refaddr(
$y
),
'$x and $y are the same object'
);