What is the correct type of sequence? I have this code:
(defrecord MethodInfo [^clojure.lang.ISeq preconds ^clojure.lang.ISeq postconds])
But it does not seem to correctly apply the type requirements, as I can write (new MethodInfo 1 2).
source
share