Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. fromList :: [a] -> Many a

    pandoc-types Text.Pandoc.Builder

    No documentation available.

  2. fromList :: (Ord k, Hashable k) => Int -> [(k, v)] -> Store k v

    wreq Network.Wreq.Cache.Store

    No documentation available.

  3. fromList :: HasCallStack => [a] -> NonEmpty a

    base-compat-batteries Data.List.NonEmpty.Compat

    Converts a normal list to a NonEmpty stream. Raises an error if given an empty list.

  4. fromList :: Int -> Int -> [a] -> Matrix a

    matrix Data.Matrix

    Create a matrix from a non-empty list given the desired size. The list must have at least rows*cols elements. An example:

    ( 1 2 3 )
    ( 4 5 6 )
    fromList 3 3 [1..] =  ( 7 8 9 )
    

  5. fromList :: [(CI ByteString, ByteString)] -> Headers

    snap-core Snap.Types.Headers

    Build a Headers value from a list of key-value pairs. Example:

    ghci> :set -XOverloadedStrings
    ghci> H.fromList [("Accept", "text/plain"), ("Accept", "text/html")]
    H {unH = [("accept","text/plain"),("accept","text/html")]}
    

  6. fromList :: forall (v :: Type -> Type) a (n :: Nat) . (Vector v a, KnownNat n) => [a] -> Maybe (Vector v n a)

    vector-sized Data.Vector.Generic.Sized

    O(n) Convert a list to a vector.

  7. fromList :: forall a (n :: Nat) . (Prim a, KnownNat n) => [a] -> Maybe (Vector n a)

    vector-sized Data.Vector.Primitive.Sized

    O(n) Convert a list to a vector.

  8. fromList :: forall (n :: Nat) a . KnownNat n => [a] -> Maybe (Vector n a)

    vector-sized Data.Vector.Sized

    O(n) Convert a list to a vector.

  9. fromList :: forall a (n :: Nat) . (Storable a, KnownNat n) => [a] -> Maybe (Vector n a)

    vector-sized Data.Vector.Storable.Sized

    O(n) Convert a list to a vector.

  10. fromList :: forall a (n :: Nat) . (Unbox a, KnownNat n) => [a] -> Maybe (Vector n a)

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Convert a list to a vector.

Page 9 of many | Previous | Next