vote up 0 vote down star

what is the best way to handle big integers in expr command. we know wide in expr.

flag

Can you be a bit more precise? – fbonnet Oct 9 at 15:20

1 Answer

vote up 4 vote down check

As of Tcl 8.5, integers are now Bignums (arbitrary precision)

If you're using an older version (which you've said you are, 8.4.x), you'll need to consider what you need to use the numbers for. Most of the standard commands won't accept Bignums, since it hadn't been added to the core at that time. However, if you're just doing math with them, you might want to take a look at

Lastly, it's worth searching the Tclers Wiki for other options.

link|flag
I am using 8.4.16 – rahul Oct 9 at 15:39
Is there something missing in this answer? Some other information you need? Never heard anything else from you, nor is it selected as the answer, so was hoping you might provide feedback. – RHSeeger Oct 12 at 5:08
Sorry... I am working on tcl library for geometrical problems, e.g. finding intersection of geometrical objects. I many cases I need to handle domain errors thrown by expr command. I am thinking to shift on c++. before I just wanted to confirm what I am doing... – rahul Oct 14 at 6:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.