interop 2022-12-20

I was wondering, with interop, is this: #^objects foo still a thing, i.e., mark foo as something that is of Object[] foo?

I've created a PR to add in the missing reference to objects type alias (https://github.com/clojure/clojure-site/pull/624) (which I originally came across via this posting on clojure-dev (from 2017!): https://groups.google.com/g/clojure-dev/c/-rcdtIlhilI.

Do let me know if it can be improved 🙂

Alex Miller (Clojure team) 2022-12-20T23:00:46.031419Z

Yes although the # there is vestigial

Alex Miller (Clojure team) 2022-12-20T23:01:01.487479Z

Just ^objects

Alex Miller (Clojure team) 2022-12-20T23:01:22.626409Z

(The #^ form is old but still works)

thank you 🙂