definition:
|
readCSVFile :: String -> IO [[String]]
readCSVFile = readCSVFileWithDelims [',']
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Reads a file in CSV format and returns the list of records
--- (where each record is a list of strings).
--- @param fname - the name of the result file (with standard suffix ".csv")
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {readCSVFileWithDelims}}
|
name:
|
readCSVFile
|
precedence:
|
no precedence defined
|
result-values:
|
{readCSVFileWithDelims}
|
signature:
|
String -> Prelude.IO [[String]]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|