| Safe Haskell | Trustworthy |
|---|---|
| Language | Haskell2010 |
Container.Class
Description
Reimagined approach for Foldable type hierarchy. Forbids usages
of length function and similar over Maybe and other potentially unsafe
data types. It was proposed to use -XTypeApplication for such cases.
But this approach is not robust enough because programmers are human and can
easily forget to do this. For discussion see this topic:
Suggest explicit type application for Foldable length and friends
- type family Element t
- class ToList t where
- class ToList t => Container t where
- type NontrivialContainer t = Container t
- newtype WrappedList f a = WrappedList (f a)
- sum :: (Container t, Num (Element t)) => t -> Element t
- product :: (Container t, Num (Element t)) => t -> Element t
- mapM_ :: (Container t, Monad m) => (Element t -> m b) -> t -> m ()
- forM_ :: (Container t, Monad m) => t -> (Element t -> m b) -> m ()
- traverse_ :: (Container t, Applicative f) => (Element t -> f b) -> t -> f ()
- for_ :: (Container t, Applicative f) => t -> (Element t -> f b) -> f ()
- sequenceA_ :: (Container t, Applicative f, Element t ~ f a) => t -> f ()
- sequence_ :: (Container t, Monad m, Element t ~ m a) => t -> m ()
- asum :: (Container t, Alternative f, Element t ~ f a) => t -> f a
- class One x where
- type OneItem x
Foldable-like classes and methods
Type class for data types that can be converted to List.
Fully compatible with Foldable.
Contains very small and safe subset of Foldable functions.
You can define Tolist by just defining toList function.
But the following law should be met:
null≡null.toList
Minimal complete definition
Methods
toList :: t -> [Element t] Source #
Convert container to list of elements.
>>>toList (Just True)[True]>>>toList @Text "aba""aba">>>:t toList @Text "aba"toList @Text "aba" :: [Char]
Checks whether container is empty.
>>>null @Text ""True>>>null @Text "aba"False
Instances
| ToList ByteString Source # | |
| ToList ByteString Source # | |
| ToList IntSet Source # | |
| ToList Text Source # | |
| ToList Text Source # | |
| Foldable f => ToList (f a) Source # | This instance makes |
| TypeError Constraint (DisallowInstance "tuples") => ToList (a, b) Source # | |
| ToList (f a) => ToList (WrappedList f a) Source # | |
class ToList t => Container t where Source #
Methods
foldMap :: Monoid m => (Element t -> m) -> t -> m Source #
fold :: Monoid (Element t) => t -> Element t Source #
foldr :: (Element t -> b -> b) -> b -> t -> b Source #
foldr' :: (Element t -> b -> b) -> b -> t -> b Source #
foldl :: (b -> Element t -> b) -> b -> t -> b Source #
foldl' :: (b -> Element t -> b) -> b -> t -> b Source #
foldr1 :: (Element t -> Element t -> Element t) -> t -> Element t Source #
foldl1 :: (Element t -> Element t -> Element t) -> t -> Element t Source #
elem :: Eq (Element t) => Element t -> t -> Bool Source #
notElem :: Eq (Element t) => Element t -> t -> Bool Source #
maximum :: Ord (Element t) => t -> Element t Source #
minimum :: Ord (Element t) => t -> Element t Source #
all :: (Element t -> Bool) -> t -> Bool Source #
any :: (Element t -> Bool) -> t -> Bool Source #
and :: Element t ~ Bool => t -> Bool Source #
or :: Element t ~ Bool => t -> Bool Source #
find :: (Element t -> Bool) -> t -> Maybe (Element t) Source #
Instances
| Container ByteString Source # | |
| Container ByteString Source # | |
| Container IntSet Source # | |
| Container Text Source # | |
| Container Text Source # | |
| TypeError Constraint (DisallowInstance "Maybe") => Container (Maybe a) Source # | |
| Foldable f => Container (f a) Source # | |
| TypeError Constraint (DisallowInstance "Identity") => Container (Identity a) Source # | |
| TypeError Constraint (DisallowInstance "Either") => Container (Either a b) Source # | |
| TypeError Constraint (DisallowInstance "tuples") => Container (a, b) Source # | |
| ToList (f a) => Container (WrappedList f a) Source # | |
type NontrivialContainer t = Container t Source #
To save backwards compatibility with previous naming.
newtype WrappedList f a Source #
This can be useful if you want to use Container methods for your data type
but you don't want to implement all methods of this type class for that.
Constructors
| WrappedList (f a) |
Instances
| ToList (f a) => Container (WrappedList f a) Source # | |
| ToList (f a) => ToList (WrappedList f a) Source # | |
| type Element (WrappedList f a) Source # | |
sum :: (Container t, Num (Element t)) => t -> Element t Source #
Stricter version of sum.
>>>sum [1..10]55>>>sum (Just 3)<interactive>:43:1: error: • Do not use 'Foldable' methods on Maybe • In the expression: sum (Just 3) In an equation for ‘it’: it = sum (Just 3)
product :: (Container t, Num (Element t)) => t -> Element t Source #
Stricter version of product.
>>>product [1..10]3628800>>>product (Right 3)<interactive>:45:1: error: • Do not use 'Foldable' methods on Either • In the expression: product (Right 3) In an equation for ‘it’: it = product (Right 3)
sequenceA_ :: (Container t, Applicative f, Element t ~ f a) => t -> f () Source #
Constrained to Container version of sequenceA_.
Others
Type class for types that can be created from one element. singleton
is lone name for this function. Also constructions of different type differ:
:[] for lists, two arguments for Maps. Also some data types are monomorphic.
>>>one True :: [Bool][True]>>>one 'a' :: Text"a">>>one (3, "hello") :: HashMap Int StringfromList [(3,"hello")]
Minimal complete definition
Instances
| One ByteString Source # | |
| One ByteString Source # | |
| One IntSet Source # | |
| One Text Source # | |
| One Text Source # | |
| One [a] Source # | |
| One (NonEmpty a) Source # | |
| One (IntMap v) Source # | |
| One (Seq a) Source # | |
| One (Set v) Source # | |
| Hashable v => One (HashSet v) Source # | |
| One (Vector a) Source # | |
| Storable a => One (Vector a) Source # | |
| Unbox a => One (Vector a) Source # | |
| Prim a => One (Vector a) Source # | |
| One (Map k v) Source # | |
| Hashable k => One (HashMap k v) Source # | |