]>
Commit | Line | Data |
---|---|---|
1 | text-pipes | |
2 | ========== | |
3 | ||
4 | This repo is called `text-pipes`, but the package is named `pipes-text` as one might expect. | |
5 | The two modules it contatins, `Pipes.Text` and `Pipes.Text.Parse`, use materials from [`pipes-text`](https://github.com/ibotty/pipes-text); | |
6 | otherwise they follow the pattern of [`pipes-bytestring`](https://github.com/Gabriel439/Haskell-Pipes-ByteString-Library), adding a few `pipes-prelude`-like operations. | |
7 | The most important function, `decodeUtf8`, written by ibotty, uses the development version of the text package; this package can however be built with the hackage `text` | |
8 | though `decodeUtf8` will then not exist. | |
9 | ||
10 | >>> runEffect $ stdinLn >-> P.takeWhile (/= "quit") >-> stdoutLn | |
11 | hi<Return> | |
12 | hi | |
13 | quit<Return> | |
14 | >>> runSafeT $ runEffect $ readFile "README.md" >-> toUpper >-> hoist lift stdout | |
15 | TEXT-PIPES | |
16 | ========== | |
17 | ... |