Liking cljdoc? Tell your friends :D

babashka.impl.clojure.data.csv

Reading and writing comma separated values. Forked from clojure/data.csv by @github/plexus to expose the private #'read-record function, and to address some reflection warnings.

Reading and writing comma separated values. Forked from
clojure/data.csv by @github/plexus to expose the private #'read-record
function, and to address some reflection warnings.
raw docstring

read-csvclj

(read-csv input & options)

Reads CSV-data from input (String or java.io.Reader) into a lazy sequence of vectors.

Valid options are :separator (default ,) :quote (default ")

Reads CSV-data from input (String or java.io.Reader) into a lazy
sequence of vectors.

 Valid options are
   :separator (default \,)
   :quote (default \")
sourceraw docstring

Read-CSV-Fromcljprotocol

read-csv-fromclj

(read-csv-from input sep quote)
source

read-recordclj

(read-record reader sep quote)
source

write-csvclj

(write-csv writer data & options)

Writes data to writer in CSV-format.

Valid options are :separator (Default ,) :quote (Default ") :quote? (A predicate function which determines if a string should be quoted. Defaults to quoting only when necessary.) :newline (:lf (default) or :cr+lf)

Writes data to writer in CSV-format.

Valid options are
  :separator (Default \,)
  :quote (Default \")
  :quote? (A predicate function which determines if a string should be quoted. Defaults to quoting only when necessary.)
  :newline (:lf (default) or :cr+lf)
sourceraw docstring

write-recordclj

(write-record writer record sep quote quote?)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close