Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. fromList :: Uniquable a => [(a, b)] -> UniqMap b

    clash-lib Clash.Data.UniqMap

    Convert a list of key-value pairs to a map.

  2. toList :: UniqMap b -> [(Unique, b)]

    clash-lib Clash.Data.UniqMap

    Convert a map to a list of unique-value pairs.

  3. fromList :: (Edge e, Ord n) => [LabeledNode n nl] -> [LabeledEdge e n el] -> Graph e n el nl

    comfort-graph Data.Graph.Comfort

    No documentation available.

  4. fromList :: Ord k => [v] -> (v -> k) -> CompactMap k v

    compactmap Data.CompactMap

    No documentation available.

  5. fromList :: forall (vec :: Type -> Type) v k . (Vector vec v, Ord k) => [v] -> (v -> k) -> CompactMap vec k v

    compactmap Data.CompactMap.Generic

    No documentation available.

  6. pattern PipeList :: Monad m => ListT m (Maybe a) -> Pipe () a u m ()

    conduino Data.Conduino

    A source is equivalent to a ListT producing a Maybe; this pattern synonym lets you treat it as such. It essentialyl wraps over toListT and fromListT.

  7. fromListT :: forall (m :: Type -> Type) o i u . Monad m => ListT m (Maybe o) -> Pipe i o u m ()

    conduino Data.Conduino

    A source is essentially ListT producing a Maybe result. This converts a ListT to the source it encodes. See ZipSource for a wrapper over Pipe that gives the right Functor and Alternative instances.

  8. toListT :: forall (m :: Type -> Type) o u . Applicative m => Pipe () o u m () -> ListT m (Maybe o)

    conduino Data.Conduino

    A source is essentially equivalent to ListT producing a Maybe result. This converts it to the ListT it encodes. See ZipSource for a wrapper over Pipe that gives the right Functor and Alternative instances.

  9. sinkList :: forall i o u (m :: Type -> Type) . Pipe i o u m [i]

    conduino Data.Conduino.Combinators

    Sink every incoming item into a list. Note that this keeps the entire list in memory until it is all eventually read, and does no "lazy IO". It exhauts the whole stream before returning anything.

  10. sourceList :: forall t a i u (m :: Type -> Type) . Foldable t => t a -> Pipe i a u m ()

    conduino Data.Conduino.Combinators

    Yield every item in a foldable container.

Page 190 of many | Previous | Next