| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Data.Text.Arbitrary
Contents
Synopsis
- data Text
Documentation
A space efficient, packed, unboxed Unicode text type.
Instances
| Arbitrary Text Source # | |
| PrintfArg Text | Since: text-1.2.2.0 |
Defined in Data.Text | |
| Binary Text | Since: text-1.2.1.0 |
| NFData Text | |
| Monoid Text | |
| Semigroup Text | Beware: Since: text-1.2.2.0 |
| Data Text | This instance preserves data abstraction at the cost of inefficiency. We omit reflection services for the sake of data abstraction. This instance was created by copying the updated behavior of
The original discussion is archived here: could we get a Data instance for Data.Text.Text? The followup discussion that changed the behavior of |
Defined in Data.Text Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Text -> c Text Source # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Text Source # toConstr :: Text -> Constr Source # dataTypeOf :: Text -> DataType Source # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Text) Source # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Text) Source # gmapT :: (forall b. Data b => b -> b) -> Text -> Text Source # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Text -> r Source # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Text -> r Source # gmapQ :: (forall d. Data d => d -> u) -> Text -> [u] Source # gmapQi :: Int -> (forall d. Data d => d -> u) -> Text -> u Source # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Text -> m Text Source # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Text -> m Text Source # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Text -> m Text Source # | |
| IsString Text | Performs replacement on invalid scalar values:
|
| IsList Text | Performs replacement on invalid scalar values:
Since: text-1.2.0.0 |
| Read Text | |
| Show Text | |
| Eq Text | |
| Ord Text | |
| Lift Text | Since: text-1.2.4.0 |
| type Item Text | |