vote up 1 vote down star

Is there a Java BigInt equivalent for Standard ML? The normal int type throws an exception when it overflows.

flag

3 Answers

vote up 4 vote down

Yes, see the IntInf structure.

link|flag
vote up 0 vote down

The BigInt-equivalent is called LargeInt. See these lecture notes to see some functions on how to convert between int (aka Int) and LargeInt.

link|flag
From the SML basis library: "If an implementation provides the IntInf structure, then LargeInt must be the same structure as IntInf (viewed through a thinning INTEGER signature). Otherwise, if LargeInt is not the same as Int, then there must be a structure Int<N> equal to LargeInt." In other words, LargeInt isn't guaranteed to be unbounded (though SML/NJ's is), but it's more portable than IntInf (which isn't required to exist). – ephemient Jul 18 at 20:05
1  
I advise against using LargeInt. You'd much rather have a compile-time failure than an unexpected overflow at run time. (Although running out of memmory has a charm all its own.) – Norman Ramsey Jul 18 at 20:07
vote up 0 vote down

Well, int puts a nasty limit on stuff like calculating permutations. SML needs a large numeric datatype thats more natural to use.

link|flag

Your Answer

Get an OpenID
or

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