Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
onList :: ([a] -> [a]) -> MQuery a -> MQuery ahw-mquery HaskellWorks.Data.MQuery No documentation available.
unzipFromListN2 :: (Storable a, Storable b) => Int -> [(a, b)] -> (Vector a, Vector b)hw-prim HaskellWorks.Data.Vector.Storable No documentation available.
fromList :: [(Param, ParamValue)] -> QueryDatahyperbole Web.Hyperbole.Data.QueryData No documentation available.
toList :: QueryData -> [(Param, ParamValue)]hyperbole Web.Hyperbole.Data.QueryData No documentation available.
fromList :: [Cookie] -> Cookieshyperbole Web.Hyperbole.Data.Session No documentation available.
-
hyperbole Web.Hyperbole.Data.Session No documentation available.
-
Lists whose types are indexed by their lengths. The implementation is a simple wrapper around a regular list. All functions in this module are total. The time complexity of each function is the same as that of the corresponding function on regular lists.
-
indexed-containers Data.NList A list whose length is statically known. Type parameter n, of kind Nat, is the length of the list.
toList :: forall (n :: Nat) a . NList n a -> [a]indexed-containers Data.NList Convert an NList into a regular list.
toList (mk3 'a' 'b' 'c') === "abc"
maybeToList :: Maybe a <-> [a]invertible Data.Invertible.Maybe Convert between Maybe and a (singleton) list (see maybeToList). (invert listToMaybe)