defn drop-every [n xs] (lazy-seq (if (seq xs) (concat (take (dec n) xs) (drop-every n (drop ... Does the Clojure library have a "drop-every" type function?
確定! 回上一頁