Copyright | (c) Dennis Gosnell 2016 |
---|---|
License | BSD-style (see LICENSE file) |
Maintainer | cdep.illabout@gmail.com |
Stability | experimental |
Portability | POSIX |
Safe Haskell | None |
Language | Haskell2010 |
Text.Pretty.Simple.Internal.Expr
Description
Documentation
newtype CommaSeparated a Source #
Constructors
CommaSeparated | |
Fields
|
Instances
Eq a => Eq (CommaSeparated a) Source # | |
Defined in Text.Pretty.Simple.Internal.Expr Methods (==) :: CommaSeparated a -> CommaSeparated a -> Bool # (/=) :: CommaSeparated a -> CommaSeparated a -> Bool # | |
Data a => Data (CommaSeparated a) Source # | |
Defined in Text.Pretty.Simple.Internal.Expr Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CommaSeparated a -> c (CommaSeparated a) # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (CommaSeparated a) # toConstr :: CommaSeparated a -> Constr # dataTypeOf :: CommaSeparated a -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c (CommaSeparated a)) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (CommaSeparated a)) # gmapT :: (forall b. Data b => b -> b) -> CommaSeparated a -> CommaSeparated a # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CommaSeparated a -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CommaSeparated a -> r # gmapQ :: (forall d. Data d => d -> u) -> CommaSeparated a -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> CommaSeparated a -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> CommaSeparated a -> m (CommaSeparated a) # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CommaSeparated a -> m (CommaSeparated a) # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CommaSeparated a -> m (CommaSeparated a) # | |
Show a => Show (CommaSeparated a) Source # | |
Defined in Text.Pretty.Simple.Internal.Expr Methods showsPrec :: Int -> CommaSeparated a -> ShowS # show :: CommaSeparated a -> String # showList :: [CommaSeparated a] -> ShowS # | |
Generic (CommaSeparated a) Source # | |
Defined in Text.Pretty.Simple.Internal.Expr Associated Types type Rep (CommaSeparated a) :: Type -> Type # Methods from :: CommaSeparated a -> Rep (CommaSeparated a) x # to :: Rep (CommaSeparated a) x -> CommaSeparated a # | |
type Rep (CommaSeparated a) Source # | |
Defined in Text.Pretty.Simple.Internal.Expr type Rep (CommaSeparated a) = D1 (MetaData "CommaSeparated" "Text.Pretty.Simple.Internal.Expr" "pretty-simple-3.2.2.0-93AickV4ocl4iiUojq5JD3" True) (C1 (MetaCons "CommaSeparated" PrefixI True) (S1 (MetaSel (Just "unCommaSeparated") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 [a]))) |
Constructors
Brackets !(CommaSeparated [Expr]) | |
Braces !(CommaSeparated [Expr]) | |
Parens !(CommaSeparated [Expr]) | |
StringLit !String | |
CharLit !String | |
NumberLit !String | We could store this as a |
Other !String |