According to the doc of bigint, it claims that all operators are overloaded:
"All operators (including basic math operations) are overloaded."
But this gives error:
use strict; use warnings; use bigint; print 2 ** 31 -1; for (1 .. 2 ** 31 - 1) { print "."; }
Range iterator outside integer range at math1.pl line 6.
(This is 5.8.4)
In reply to bigint does not overload range operator by pg
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |