diff options
-rw-r--r-- | Pipes/Text.hs | 3 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Pipes/Text.hs b/Pipes/Text.hs index d811ab5..a3e85b2 100644 --- a/Pipes/Text.hs +++ b/Pipes/Text.hs | |||
@@ -82,6 +82,9 @@ module Pipes.Text ( | |||
82 | encodeUtf8, | 82 | encodeUtf8, |
83 | pack, | 83 | pack, |
84 | unpack, | 84 | unpack, |
85 | toCaseFold, | ||
86 | toLower, | ||
87 | toUpper, | ||
85 | stripStart, | 88 | stripStart, |
86 | 89 | ||
87 | -- * Folds | 90 | -- * Folds |
@@ -11,7 +11,7 @@ though `decodeUtf8` will then not exist. | |||
11 | hi<Return> | 11 | hi<Return> |
12 | hi | 12 | hi |
13 | quit<Return> | 13 | quit<Return> |
14 | >>> runSafeT $ runEffect $ readFile "README.md" >-> map toUpper >-> hoist lift stdout | 14 | >>> runSafeT $ runEffect $ readFile "README.md" >-> toUpper >-> hoist lift stdout |
15 | TEXT-PIPES | 15 | TEXT-PIPES |
16 | ========== | 16 | ========== |
17 | ... \ No newline at end of file | 17 | ... \ No newline at end of file |