]> git.immae.eu Git - github/fretlink/text-pipes.git/blame - README.md
Readme
[github/fretlink/text-pipes.git] / README.md
CommitLineData
f33dd2ab
MT
1text-pipes
2==========
3
37b59370 4Text pipes, somehow to be fused with `pipes-text`.
5This follows the pattern of `pipes-bytestring` by the
6expedient of regular expressions, and adds a few
7`pipes-prelude`-like operations for testing.
8
9
10 >>> runEffect $ stdinLn >-> P.takeWhile (/= "quit") >-> stdoutLn
11 hi<Return>
12 hi
13 quit<Return>
14 >>> runSafeT $ runEffect $ readFile "README.md" >-> map toUpper >-> hoist lift stdout
15 TEXT-PIPES
16 ==========
17 TEXT PIPES, SOMEHOW TO BE FUSED WITH `PIPES-TEXT`.
18 ...