Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

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

  1. rowsfromList :: HeadedParsec Void Text (NonEmpty RowsfromItem)

    postgresql-syntax PostgresqlSyntax.Parsing

    No documentation available.

  2. rowsfromList :: RowsfromList -> TextBuilder

    postgresql-syntax PostgresqlSyntax.Rendering

    No documentation available.

  3. pinnedFromList :: Unbox a => [a] -> Array a

    streamly-core Streamly.Internal.Data.Array

    Like fromList but creates a pinned array.

  4. pinnedFromListN :: Unbox a => Int -> [a] -> Array a

    streamly-core Streamly.Internal.Data.Array

    Like fromListN but creates a pinned array.

  5. pinnedFromList :: (MonadIO m, Unbox a) => [a] -> m (MutArray a)

    streamly-core Streamly.Internal.Data.MutArray

    Like fromList but creates a pinned array.

  6. pinnedFromListN :: (MonadIO m, Unbox a) => Int -> [a] -> m (MutArray a)

    streamly-core Streamly.Internal.Data.MutArray

    Like fromListN but creates a pinned array.

  7. cbasicFromList :: (CFreeMonoid f, Dom f a) => [a] -> f a

    subcategories Control.Subcategory.Foldable

    No documentation available.

  8. cfromList :: (CFreeMonoid f, Dom f a) => [a] -> f a

    subcategories Control.Subcategory.Foldable

    No documentation available.

  9. cfromListN :: (CFreeMonoid f, Dom f a) => Int -> [a] -> f a

    subcategories Control.Subcategory.Foldable

    The cfromListN function takes the input list's length as a hint. Its behaviour should be equivalent to cfromList. The hint can be used to construct the structure l more efficiently compared to cfromList. If the given hint does not equal to the input list's length the behaviour of fromListN is not specified.

  10. fastFromList :: [a] -> Pattern a

    tidal-core Sound.Tidal.Core

    Turns a list of values into a pattern, playing all of them per cycle. The following are equivalent:

    d1 $ n (fastFromList [0, 1, 2]) # s "superpiano"
    d1 $ n "[0 1 2]" # s "superpiano"
    

Page 73 of many | Previous | Next