On Sun, Dec 14, 2008 at 3:24 PM, Michel Salim <[email protected]> wrote: > > My mistake; unchecked operations work just fine if their arguments > (including constants) are given type hints. What happens if unchecked- > add/sub/... is given an argument of unknown type, though? It still > seems to work, though slowly.
Reflection ... since Clojure doesn't know the types at compile time it has to determine them at runtime via reflection. While Java's reflection support is much faster than it used to be, it's still a big hit. - J. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---
