-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | GenValidity support for Text -- -- Please see README.md @package genvalidity-text @version 0.5.0.2 module Data.GenValidity.Text -- | 'textStartingWith c' generates a Text value that starts with -- c. textStartingWith :: Char -> Gen Text -- | 'textStartingWith g' generates a Text value that contains a -- substring generated by g. textWith :: Gen Text -> Gen Text -- | 'textStartingWith c' generates a Text value that contains a -- c. textWithA :: Char -> Gen Text -- | 'textWithoutAny c' generates a Text value that does not contain -- any c. textWithoutAny :: Char -> Gen Text -- | 'textWithoutAnyOf c' generates a Text value that does not -- contain any character in ls. textWithoutAnyOf :: String -> Gen Text -- | textAllCaps generates a Text value with only upper-case -- characters. textAllCaps :: Gen Text instance Data.GenValidity.GenUnchecked Data.Text.Internal.Text instance Data.GenValidity.GenValid Data.Text.Internal.Text instance Data.GenValidity.GenInvalid Data.Text.Internal.Text