Hoogle Search

Within LTS Haskell 23.18 (ghc-9.8.4)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. writeHeaders :: forall (m :: Type -> Type) s r . (Monad m, CSV s (Row r), IsString s) => CSVSettings -> ConduitT (MapRow r) s m ()

    csv-conduit Data.CSV.Conduit

    Write headers AND the row into the output stream, once. If you don't call this while using MapRow family of row types, then your resulting output will NOT have any headers in it. Usage: Just chain this using the Monad instance in your pipeline:

    runConduit $ ... .| writeHeaders settings >> fromCSV settings .| sinkFile "..."
    

  2. writeHeadersOrdered :: forall (m :: Type -> Type) s r . (Monad m, CSV s (Row r), IsString s) => CSVSettings -> ConduitM (OrderedMapRow r) s m ()

    csv-conduit Data.CSV.Conduit

    No documentation available.

Page 1 of 1