Re: How to coerce to bigint ?

2015-04-04 Thread Paul Roush
On Saturday, April 4, 2015 at 1:00:46 PM UTC-4, Michael Gardner wrote: > > On Sat, Apr 4, 2015 at 11:36 AM, Paul Roush > wrote: > >> (range 5N) => (0 1 2 3 4) ; i.e. the "bigint-ness" is lost >> >> So in this particular case I needed to "i

Re: How to coerce to bigint ?

2015-04-04 Thread Paul Roush
On Saturday, April 4, 2015 at 12:09:36 PM UTC-4, Andy Fingerhut wrote: > > > > On Sat, Apr 4, 2015 at 8:52 AM, Paul Roush > > wrote: > >> I have 2 questions related to bigints. >> >> 1) I've read things suggesting Clojure auto-converts between i

How to coerce to bigint ?

2015-04-04 Thread Paul Roush
I have 2 questions related to bigints. 1) I've read things suggesting Clojure auto-converts between int, long, and bigint to prevent overflow. That isn't the behavior I've experienced. Did something change from an older release of Clojure to more recent ones? 2) I found myself wanting to writ