diff options
Diffstat (limited to 'Alpha.hs')
-rw-r--r-- | Alpha.hs | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -29,6 +29,9 @@ module Alpha (</), (<//), + -- * Bool + don't, + -- * Text chomp, lchomp, @@ -90,3 +93,8 @@ lchomp = LazyText.filter (/= '\n') -- | Join a list of things with a separator. joinWith :: [a] -> [[a]] -> [a] joinWith = intercalate + +-- | can you just not +don't :: Bool -> Bool +don't = do not +{-# ANN don't "HLint: ignore Redundant do" #-} |