Copyright | (c) Dennis Gosnell 2016 |
---|---|
License | BSD-style (see LICENSE file) |
Maintainer | cdep.illabout@gmail.com |
Stability | experimental |
Portability | POSIX |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Documentation
newtype CommaSeparated a Source #
CommaSeparated | |
|
Instances
Eq a => Eq (CommaSeparated a) Source # | |
Defined in Text.Pretty.Simple.Internal.Expr (==) :: CommaSeparated a -> CommaSeparated a -> Bool # (/=) :: CommaSeparated a -> CommaSeparated a -> Bool # | |
Data a => Data (CommaSeparated a) Source # | |
Defined in Text.Pretty.Simple.Internal.Expr 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 :: forall r r'. (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 showsPrec :: Int -> CommaSeparated a -> ShowS # show :: CommaSeparated a -> String # showList :: [CommaSeparated a] -> ShowS # | |
Generic (CommaSeparated a) Source # | |
Defined in Text.Pretty.Simple.Internal.Expr type Rep (CommaSeparated a) :: Type -> Type # 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-4.1.1.0-BT8AU6Jn7o24gHClHYMJh6" 'True) (C1 ('MetaCons "CommaSeparated" 'PrefixI 'True) (S1 ('MetaSel ('Just "unCommaSeparated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 [a]))) |
Brackets !(CommaSeparated [Expr]) | |
Braces !(CommaSeparated [Expr]) | |
Parens !(CommaSeparated [Expr]) | |
StringLit !String | |
CharLit !String | |
NumberLit !String | We could store this as a |
Other !String |