Calling Java vararg functions seems to be less transparent in Clojure interop:

(String/format "%03d" 5)

java.lang.ClassCastException: java.lang.Integer cannot be cast to
[Ljava.lang.Object; (NO_SOURCE_FILE:0)
  [Thrown class clojure.lang.Compiler$CompilerException]

while

(String/format "%03d" (to-array '(5)))

works as you would expect.

I just wanted to make sure I wasn't missing something. Perhaps
something along the lines of

(defn format-string
  [fmt & args]
  (String/format fmt (to-array args)))

would be useful in string-utils.

    -tree

-- 
Tom Emerson
[EMAIL PROTECTED]
http://www.dreamersrealm.net/~tree

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to