power-dot icon indicating copy to clipboard operation
power-dot copied to clipboard

Support for varargs method invocations

Open athos opened this issue 3 years ago • 0 comments

By extending the current method search mechanism, it should be possible to support varargs method invocations. Once that is achieved, we can write code like the following:

#dot/$(.printf System/out "Hello, %s!\n" "Clojure")

instead of:

(.printf System/out "Hello, %s!\n" (into-array String ["Clojure"]))

athos avatar Feb 04 '21 14:02 athos