I have some interop code that I have carefully specified all the arguments to be in the correct type (IE the function signature takes 3 floats, so I cast everything to float so that I can avoid reflection). What I'm surprised by is compile time constants such as (float -173) or (float 8.5) are not saved as the correct primitive type, using jd-gui I see that these were actually turned into RT.uncheckedFloatCast(-173L), and RT.uncheckedFloatCast(8.5D), respectively. Why isn't this just saved as a the correct primitive directly in the generated bytecode? This is with clojure 1.8.0
-- 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 to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.