aboutsummaryrefslogtreecommitdiffhomepage
path: root/Pipes
Commit message (Collapse)AuthorAgeFilesLines
* further line-based functionsmichaelt2016-02-061-43/+177
|
* Rename function to readFileLn, export fromHandleLnSidharth Kapur2016-02-061-15/+18
|
* Export readFileLines functionSidharth Kapur2016-02-051-0/+1
|
* Add readFileLines functionSidharth Kapur2016-02-051-0/+18
|
* safe nonsensemichaelt2015-09-111-1/+1
|
* travisymichaelt2015-09-111-1/+1
|
* travis againmichaelt2015-09-111-5/+10
|
* travismichaelt2015-09-111-18/+41
|
* detritusmichaelt2015-09-113-17/+13
|
* encoding documentationmichaelt2015-05-041-71/+132
|
* wibble examplesmichaelt2015-05-031-1/+1
|
* documentationmichaelt2015-04-301-1/+1
|
* tutorial nonsensemichaelt2014-11-123-29/+57
|
* added eoflens to discriminate whether decoding was completedmichaelt2014-11-112-2/+37
|
* travismichaelt2014-11-111-2/+2
|
* travismichaelt2014-11-111-2/+21
|
* tutorial etcmichaelt2014-11-082-286/+315
|
* Bumped bounds for pipes-bytestring. Made types agree with pipes-bytestring ↵michaelt2014-06-262-279/+242
| | | | where possible. Scrapped Iso and profunctor
* omit >->/map rulesmichaelt2014-06-261-53/+14
|
* Revert "started generalizing lenses"michaelt2014-06-232-81/+47
| | | | This reverts commit c3c19f9b4f0564f3fae39a18555f6cfb322ee7c9.
* started generalizing lensesmichaelt2014-06-152-47/+81
|
* more attempts to make haddock/hackage happymichaelt2014-06-092-27/+31
|
* depend on streaming commonsmichaelt2014-06-041-7/+8
|
* Gabriel G: generalize type encode functionsmichaelt2014-03-201-5/+5
|
* brilliant insight into haddock markupmichaelt2014-03-041-17/+32
|
* documentation nonsensemichaelt2014-03-012-10/+15
|
* Pipes.Text documentation approaching tutorial lengthmichaelt2014-02-252-29/+127
|
* IO documentation wibblesmichaelt2014-02-211-6/+5
|
* finished somewhat wordy documentation for Pipes.Textmichaelt2014-02-211-106/+169
|
* generalized signaturesmichaelt2014-02-193-8/+7
|
* docs wibblesmichaelt2014-02-182-79/+96
|
* more catatonia-inducing documentationmichaelt2014-02-181-38/+53
|
* version 0.0.0.8 fwiwmichaelt2014-02-172-8/+10
|
* more documentationmichaelt2014-02-171-4/+9
|
* more documentation restructuringmichaelt2014-02-171-22/+67
|
* documentation overhaul continuedmichaelt2014-02-173-91/+210
|
* encoding documentation beginning to improvemichaelt2014-02-161-17/+56
|
* readmemichaelt2014-02-161-3/+3
|
* Merge pull request #7 from Gabriel439/generalizeMichael Thompson2014-02-161-3/+3
|\ | | | | Changed some `Producer`s to `Producer'`s
| * Changed some `Producer`s to `Producer'`sGabriel Gonzalez2014-02-151-3/+3
| |
* | Simplified `Codec` type synonymGabriel Gonzalez2014-02-151-4/+6
|/ | | | This implements it in terms of `Lens'` to make it more clear what is going on
* improve documentation Pipes.Text.IOmichaelt2014-02-151-11/+43
|
* clean up exports in Pipes.Text.Encodingmichaelt2014-02-151-10/+9
|
* clean up exports in Pipes.Textmichaelt2014-02-151-62/+19
|
* simplify importsmichaelt2014-02-152-31/+9
|
* use new text-stream-decodingmichaelt2014-02-156-612/+335
|
* left codec modulemichaelt2014-02-121-215/+0
|
* Fixed `scan`Gabriel Gonzalez2014-02-071-2/+4
| | | | | | | | The first `Char` of each output chunk is redundant (since it would have been emitted by the previous chunk). This removes the duplicate `Char`s. Note that this bug was present in `pipes-bytestring` as well, and I fixed it there, too.
* Merge pull request #3 from Gabriel439/nocppMichael Thompson2014-02-051-4/+2
|\ | | | | | | Removed use of CPP to guard Trustworthy
| * Removed use of CPP to guard TrustworthyGabriel Gonzalez2014-02-061-5/+3
| | | | | | | | | | | | | | | | The CPP guard is only required for GHC 7.2 and older, but even Debian stable packs GHC 7.4. Also, CPP currently causes problems on OSX because of the transition to clang so I'm currently being very conservative about using it. When I originally started using the CPP guards GHC 6.12 was still a supported compiler for `pipes`, but it's not any longer.