Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

marked as duplicate by bitmask, Tim, ρяσѕρєя K, Donal Fellows, Bill the Lizard Aug 19 '12 at 16:50

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 9 down vote accepted

There is a toInteger function you can use.

share|improve this answer
in haskell please – marco Oct 31 '10 at 3:55
10  
@marco: Yes, in Haskell. – sth Oct 31 '10 at 3:56
@marco, @sth: lol – ta.speot.is Oct 31 '10 at 5:08

fromIntegral is a good generic way to convert any Integral value into any other Integeral. But as sth said, toInteger works for the case of converting specifically to an Integer.

share|improve this answer

also, you can use fromIntegral (since Int is an Integral)

share|improve this answer

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