aboutsummaryrefslogtreecommitdiffhomepage
path: root/pipes-text.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'pipes-text.cabal')
-rw-r--r--pipes-text.cabal12
1 files changed, 8 insertions, 4 deletions
diff --git a/pipes-text.cabal b/pipes-text.cabal
index 0807278..cb828a7 100644
--- a/pipes-text.cabal
+++ b/pipes-text.cabal
@@ -1,13 +1,17 @@
1name: pipes-text 1name: pipes-text
2version: 0.0.0.1 2version: 0.0.0.2
3synopsis: Text pipes. 3synopsis: Text pipes.
4description: Many of the pipes and other operations defined here mirror those in 4description: Many of the pipes and other operations defined here mirror those in
5 the `pipes-bytestring` library. Folds like `length` and grouping 5 the `pipes-bytestring` library. Folds like `length` and grouping
6 operations like `lines` simply adjust for the differences between 6 operations like `lines` simply adjust for the differences between
7 `ByteString` and `Text` and `Word8` and `Char`. The distinctive feature 7 `ByteString` and `Text` and `Word8` and `Char`. It is hoped that this
8 of the library is the `Text/ByteString` encoding and decoding apparatus. 8 homogeneity will aid in learning the terms and programming style associated
9 with both of them.
9 . 10 .
10 To this core are added some simple functions akin to the `String` 11 The most distinctive addition of the library to that core is the
12 apparatus for encoding and decoding `Text` and `ByteString`.
13 .
14 Also defined are some simple functions akin to the `String`
11 operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`. 15 operations in `Pipes.Prelude`, and others like the utilities in `Data.Text`.
12 . 16 .
13 All of the `IO` operations defined here - e.g `readFile`, `stdout` etc. 17 All of the `IO` operations defined here - e.g `readFile`, `stdout` etc.