Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. type family FromListSym1 (a6989586621681141886 :: [a]) :: NonEmpty a

    singletons-base Data.List.NonEmpty.Singletons

    No documentation available.

  2. arrayFromList :: [a] -> Array a

    primitive Data.Primitive.Array

    Create an array from a list.

  3. arrayFromListN :: Int -> [a] -> Array a

    primitive Data.Primitive.Array

    Create an array from a list of a known length. If the length of the list does not match the given length, this throws an exception.

  4. byteArrayFromList :: Prim a => [a] -> ByteArray

    primitive Data.Primitive.ByteArray

    Create a ByteArray from a list.

    byteArrayFromList xs = byteArrayFromListN (length xs) xs
    

  5. byteArrayFromListN :: Prim a => Int -> [a] -> ByteArray

    primitive Data.Primitive.ByteArray

    Create a ByteArray from a list of a known length. If the length of the list does not match the given length, this throws an exception.

  6. primArrayFromList :: Prim a => [a] -> PrimArray a

    primitive Data.Primitive.PrimArray

    Create a PrimArray from a list.

    primArrayFromList vs = primArrayFromListN (length vs) vs
    

  7. primArrayFromListN :: Prim a => Int -> [a] -> PrimArray a

    primitive Data.Primitive.PrimArray

    Create a PrimArray from a list of a known length. If the length of the list does not match the given length, this throws an exception.

  8. smallArrayFromList :: [a] -> SmallArray a

    primitive Data.Primitive.SmallArray

    Create a SmallArray from a list.

  9. smallArrayFromListN :: Int -> [a] -> SmallArray a

    primitive Data.Primitive.SmallArray

    Create a SmallArray from a list of a known length. If the length of the list does not match the given length, this throws an exception.

  10. blockFromList :: [n O O] -> Block n O O

    ghc GHC.Cmm.Dataflow.Block

    No documentation available.

Page 64 of many | Previous | Next