| Safe Haskell | Safe |
|---|---|
| Language | Haskell98 |
Data.AList.NonEmpty
Documentation
data AListNonEmpty a Source #
Constructors
| AListNonEmptyAppend (AListNonEmpty a) (AListNonEmpty a) | |
| AListNonEmptySingle a |
Instances
| Read a => Read (AListNonEmpty a) Source # | |
Defined in Data.AList.NonEmpty Methods readsPrec :: Int -> ReadS (AListNonEmpty a) # readList :: ReadS [AListNonEmpty a] # readPrec :: ReadPrec (AListNonEmpty a) # readListPrec :: ReadPrec [AListNonEmpty a] # | |
| Show a => Show (AListNonEmpty a) Source # | |
Defined in Data.AList.NonEmpty Methods showsPrec :: Int -> AListNonEmpty a -> ShowS # show :: AListNonEmpty a -> String # showList :: [AListNonEmpty a] -> ShowS # | |
| Semigroup (AListNonEmpty a) Source # | |
Defined in Data.AList.NonEmpty Methods (<>) :: AListNonEmpty a -> AListNonEmpty a -> AListNonEmpty a # sconcat :: NonEmpty (AListNonEmpty a) -> AListNonEmpty a # stimes :: Integral b => b -> AListNonEmpty a -> AListNonEmpty a # | |
append :: AListNonEmpty a -> AListNonEmpty a -> AListNonEmpty a Source #