VOOZH about

URL: https://www.geeksforgeeks.org/perl/perl-mathbigint-binf-method/

⇱ Perl | Math::BigInt->binf() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Perl | Math::BigInt->binf() method

Last Updated : 3 Oct, 2019
Math::BigInt module in Perl provides objects that represent integers with arbitrary precision and overloaded arithmetical operators. binf() method of Math::BigInt module is used to create a new object with value infinity and if used on an existing object, it sets it to infinity.
Syntax: Math::BigInt->binf() Parameter: plus or minus: to set the sign of infinity as '+' or '-' Returns: object with value inf
Example 1:
Output:
inf
-inf
Example 2:
Output:
Before function call: 78215936043546
After function call: inf
Example 3:
Output:
Before function call: 78215936043546
After function call: -inf
Comment
Article Tags:

Explore