How to handle java variable length arguments in clojure?

Viewed 8251

I'am wrapping a java lib into clojure, but i have problems dealing with variable length arguments. Say,

TestClass.aStaticFunction(Integer... intList){/*....*/}

How could i call this function in clojure?

3 Answers
Related