clojure.contrib.repl-utils.show and bigint

2009-04-22 Thread miki
Hello All, Is the fact that the output of (show java.math.BigInteger) and (show bigint) differ is a bug or a feature? :) All the best, -- Miki --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post

Re: clojure.contrib.repl-utils.show and bigint

2009-04-22 Thread Stephen C. Gilardi
On Apr 22, 2009, at 2:38 AM, miki wrote: Is the fact that the output of (show java.math.BigInteger) and (show bigint) differ is a bug or a feature? :) java.math.BigInteger is a class. bigint is a function. Differing output from show is expected. --Steve smime.p7s Description: S/MIME

Re: clojure.contrib.repl-utils.show and bigint

2009-04-22 Thread Chouser
On Wed, Apr 22, 2009 at 2:38 AM, miki miki.teb...@gmail.com wrote: Is the fact that the output of (show java.math.BigInteger) and (show bigint) differ is a bug or a feature? :) Feature! The symbol java.math.BigInteger refers to the BigInteger class, and 'show' shows that. The symbol bigint

Re: clojure.contrib.repl-utils.show and bigint

2009-04-22 Thread miki
Hello, Is the fact that the output of (show java.math.BigInteger) and (show bigint) differ is a bug or a feature? :) java.math.BigInteger is a class. bigint is a function. Differing output from show is expected. Ah, OK. Thanks, -- Miki