Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. listens :: forall (m :: Type -> Type) w b a . Monad m => (w -> b) -> WriterT w m a -> WriterT w m (a, b)

    automaton Data.Automaton.Trans.Writer

    listens f m is an action that executes the action m and adds the result of applying f to the output to the value of the computation.

  2. listBits :: Vector Bit -> [Int]

    bitvec Data.Bit

    Return 0-based indices of set bits in a vector.

    >>> :set -XOverloadedLists
    
    >>> listBits [1,1,0,1,0,1]
    [0,1,3,5]
    

  3. listBits :: Vector Bit -> [Int]

    bitvec Data.Bit.ThreadSafe

    Return 0-based indices of set bits in a vector.

    >>> :set -XOverloadedLists
    
    >>> listBits [1,1,0,1,0,1]
    [0,1,3,5]
    

  4. listen :: forall a1 w a (es :: [Effect]) (ff :: (Type -> Type) -> Type -> Type) (c :: (Type -> Type) -> Constraint) . (Free c ff, a ~ Eff ff es, WriterH w :> es) => a a1 -> a (w, a1)

    data-effects Data.Effect.Writer

    No documentation available.

  5. listen'_ :: forall a1 w a (es :: [Effect]) (ff :: (Type -> Type) -> Type -> Type) (c :: (Type -> Type) -> Constraint) . (Free c ff, a ~ Eff ff es, In (WriterH w) es) => a a1 -> a (w, a1)

    data-effects Data.Effect.Writer

    No documentation available.

  6. listen :: (HasCallStack, MonadDB m) => Channel -> m ()

    hpqtypes Database.PostgreSQL.PQTypes.Notification

    Start listening for notifications on a given channel.

  7. listToUnique :: [a] -> IO (Maybe a)

    relational-query-HDBC Database.HDBC.Record

    Fetch expecting result records is unique.

  8. listToUnique :: [a] -> IO (Maybe a)

    relational-query-HDBC Database.HDBC.Record.Query

    Fetch expecting result records is unique.

  9. listOfShape :: Shape sh => sh -> [Int]

    repa Data.Array.Repa.Shape

    Convert a shape into its list of dimensions.

  10. listStateJoin :: (List l, List k, ItemM l ~ StateT s (ItemM k)) => l a -> ItemM l (k a)

    List Data.List.Class

    listStateJoin can transform a ListT (StateT s m) a to a StateT s m (ListT m a). When iterating a list, a state is already maintained and passed along in the form of the location along the list. This joins the inner StateT s into the list. The list will fork the state given to it and won't share its changes.

Page 25 of many | Previous | Next