I'm trying to call this java method from Clojure and it's throwing me "ClassCastException Cannot cast java.lang.Long to [J java.lang.Class.cast (Class.java:3003)"
public String encrypt(long... numbers) {
return encode(numbers, alphabet_, salt_, minHashLength_);
}
What's the equivalent of calling that method from Clojure?