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. allFieldLinks :: (HasLink (ToServantApi routes), GenericServant routes (AsLink Link), ToServant routes (AsLink Link) ~ MkLink (ToServantApi routes) Link) => routes (AsLink Link)

    gogol-core Gogol.Prelude

    Get all links as a record.

  2. allFieldLinks' :: (HasLink (ToServantApi routes), GenericServant routes (AsLink a), ToServant routes (AsLink a) ~ MkLink (ToServantApi routes) a) => (Link -> a) -> routes (AsLink a)

    gogol-core Gogol.Prelude

    More general version of allFieldLinks.

  3. alloca :: (MonadUnliftIO m, Storable a) => (Ptr a -> m b) -> m b

    unliftio UnliftIO.Foreign

    Unlifted alloca.

  4. allocaArray :: (MonadUnliftIO m, Storable a) => Int -> (Ptr a -> m b) -> m b

    unliftio UnliftIO.Foreign

    Unlifted allocaArray.

  5. allocaArray0 :: (MonadUnliftIO m, Storable a) => Int -> (Ptr a -> m b) -> m b

    unliftio UnliftIO.Foreign

    Unlifted allocaArray0.

  6. allocaBytes :: MonadUnliftIO m => Int -> (Ptr a -> m b) -> m b

    unliftio UnliftIO.Foreign

    Unlifted allocaBytes.

  7. allocaBytesAligned :: MonadUnliftIO m => Int -> Int -> (Ptr a -> m b) -> m b

    unliftio UnliftIO.Foreign

    Unlifted allocaBytesAligned.

  8. allocateBuffer :: Int -> IO Buffer

    warp Network.Wai.Handler.Warp.Internal

    Allocating a buffer with malloc().

  9. allOf :: Getting All s a -> (a -> Bool) -> s -> Bool

    microlens Lens.Micro

    Returns True if any value returned by a getter (any getter, including lenses, traversals, and folds) satisfies a predicate.

    >>> allOf each (=='x') ['x','x']
    True
    
    >>> allOf each (=='x') ['x','y']
    False
    
    >>> allOf each (=='x') ['y','y']
    False
    

  10. alloc :: ByteArray ba => Int -> (Ptr p -> IO ()) -> IO ba

    memory Data.ByteArray

    Allocate a new bytearray of specific size, and run the initializer on this memory

Page 77 of many | Previous | Next