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.
-
pandoc-types Text.Pandoc.Builder No documentation available.
fromList :: (Ord k, Hashable k) => Int -> [(k, v)] -> Store k vwreq Network.Wreq.Cache.Store No documentation available.
fromList :: HasCallStack => [a] -> NonEmpty abase-compat-batteries Data.List.NonEmpty.Compat Converts a normal list to a NonEmpty stream. Raises an error if given an empty list.
fromList :: Int -> Int -> [a] -> Matrix amatrix 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 )
fromList :: [(CI ByteString, ByteString)] -> Headerssnap-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")]}
-
vector-sized Data.Vector.Generic.Sized O(n) Convert a list to a vector.
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.
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.
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.
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.