changed types of encodeCSV and encodeRawCSV
...to be more generic, the type now allows the to take any kind of input
This commit is contained in:
parent
c1e9fb7b8e
commit
22b6942900
|
@ -153,7 +153,7 @@ encodeCSV
|
||||||
:: Monad m
|
:: Monad m
|
||||||
=> [[T.Text]]
|
=> [[T.Text]]
|
||||||
-- ^ the data being encoded, organized into rows and fields
|
-- ^ the data being encoded, organized into rows and fields
|
||||||
-> ConduitT () BS.ByteString m ()
|
-> ConduitT o BS.ByteString m ()
|
||||||
encodeCSV csv = sourceList csv .| encodeRows
|
encodeCSV csv = sourceList csv .| encodeRows
|
||||||
|
|
||||||
-- | encode an entire CSV file
|
-- | encode an entire CSV file
|
||||||
|
@ -161,7 +161,7 @@ encodeRawCSV
|
||||||
:: Monad m
|
:: Monad m
|
||||||
=> [[BS.ByteString]]
|
=> [[BS.ByteString]]
|
||||||
-- ^ the data being encoded, organized into rows and fields
|
-- ^ the data being encoded, organized into rows and fields
|
||||||
-> ConduitT () BS.ByteString m ()
|
-> ConduitT o BS.ByteString m ()
|
||||||
encodeRawCSV csv = sourceList csv .| encodeRawRows
|
encodeRawCSV csv = sourceList csv .| encodeRawRows
|
||||||
|
|
||||||
-- | Writes a stream of Text-based rows to a CSV file
|
-- | Writes a stream of Text-based rows to a CSV file
|
||||||
|
|
Loading…
Reference in New Issue
Block a user