(defn slurp "Reads the file named by f and returns it as a string." [^String f] (.. java.nio.charset.Charset (forName "UTF-8") (newDecoder) (decode (mmap f))))
Comments top
No comments for slurp. Log in to add a comment.