Thanks!
--
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
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email
I have opened http://dev.clojure.org/jira/browse/CLJ-1929.
--
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
Note that posts from new members are moderated - please be patient with your
firs
Another observation: it seems that the type inference stumbles only when
there is an overloaded method with the same arity (?):
(import 'java.time.format.TextStyle)
(let [builder (DateTimeFormatterBuilder.)]
(.appendZoneText builder TextStyle/FULL #{}))
This is a similar case in th
Actually s/constant/literal/
https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/Compiler.java#L3003-L3005
https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/Compiler.java#L3057-L3060
https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/Compiler.java#
On 16 May 2016, at 15:53, Alex Miller wrote:
>
> This is kind of an interesting case. From poking at it a bit, the {} is typed
> as a IPersistentMap, and IPM does NOT extend java.util.Map (although the
> implementations like PersistentArrayMap and PersistentHashMap do via
> APersistentMap).
>
This is kind of an interesting case. From poking at it a bit, the {} is
typed as a IPersistentMap, and IPM does NOT extend java.util.Map (although
the implementations like PersistentArrayMap and PersistentHashMap do via
APersistentMap).
I think the interesting question is why the type hint is n
Hello,
I am getting a reflection warning in Java interop and don’t understand
why:
(import 'java.time.format.DateTimeFormatterBuilder
'java.time.temporal.ChronoField)
(set! *warn-on-reflection* true)
(let [builder (DateTimeFormatterBuilder.)]
(.appendText builder C