How to work around missing annotations ?
(defn readCsv
"Read CSV call a function"
[csvname _fn]
(with-open [rdr (clojure.java.io/reader csvname)]
(_fn (line-seq rdr))))
I have this function. Its not annotated. Frankly i do not want to check it with check-ns but when i run check-ns to check other functions. I get error because line-seq is not found.
ps. I am new to eco system so apologies if its a waste of time.
How to work around missing annotations ?
I have this function. Its not annotated. Frankly i do not want to check it with check-ns but when i run check-ns to check other functions. I get error because line-seq is not found.
ps. I am new to eco system so apologies if its a waste of time.