Welcome! Please see the About page for a little more info on how this works.

0 votes
in Errors by

Functions returning primitives are hinted with metadata on the argument list, not on the function name. Using a primitive type hint on a function name should print an error message.

Currently, misplaced primitive hints are read without error.

4 Answers

0 votes
by
_Comment made by: jafingerhut_

One can type hint a primitive value on a Var naming a function, or any value one wants, like so:

(def {:tag 'long} foo 17)

(defn {:tag 'double} bar [x y]
  (* 2.0 x y))

I think it is odd that one must use {:tag 'long} instead of ^long, since trying to use ^long ends up giving the useless type hint that is the value of the function clojure.core/long.

However, the Clojure compiler will use the primitive type hints as shown in the examples above to avoid reflection in appropriate Java interop calls, so making them an error seems undesirable.
0 votes
by

Comment made by: lvh

Alternatively, perhaps the compiler could simply use the type hint? While ^long is useless now, its intent seems unambiguous.

0 votes
by

Comment made by: alexmiller

Description could use some examples

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-790 (reported by alan@thinkrelevance.com)
...