Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
RIO.Text.Lazy.Partial
Contents
Description
This module exports all the partial functions from Data.Text.Lazy
Synopsis
- head :: Text -> Char
- last :: Text -> Char
- tail :: Text -> Text
- init :: Text -> Text
- replace :: Text -> Text -> Text -> Text
- foldl1 :: (Char -> Char -> Char) -> Text -> Char
- foldl1' :: (Char -> Char -> Char) -> Text -> Char
- foldr1 :: (Char -> Char -> Char) -> Text -> Char
- maximum :: Text -> Char
- minimum :: Text -> Char
- breakOn :: Text -> Text -> (Text, Text)
- breakOnEnd :: Text -> Text -> (Text, Text)
- splitOn :: Text -> Text -> [Text]
- breakOnAll :: Text -> Text -> [(Text, Text)]