Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
listToUnique :: [a] -> IO (Maybe a)relational-query-HDBC Database.HDBC.Record.Query Fetch expecting result records is unique.
listOfShape :: Shape sh => sh -> [Int]repa Data.Array.Repa.Shape Convert a shape into its list of dimensions.
listStateJoin :: (List l, List k, ItemM l ~ StateT s (ItemM k)) => l a -> ItemM l (k a)List Data.List.Class listStateJoin can transform a ListT (StateT s m) a to a StateT s m (ListT m a). When iterating a list, a state is already maintained and passed along in the form of the location along the list. This joins the inner StateT s into the list. The list will fork the state given to it and won't share its changes.
-
bcp47 Data.BCP47.Internal.Arbitrary Generates a list of random length. The maximum length depends on the size parameter.
listArray :: Ix i => (i, i) -> [Bool] -> BitArray ibitwise Data.Array.BitArray Create an array from a list of elements.
listCs :: forall (m :: Type -> Type) . DataDef m -> [C]boltzmann-samplers Boltzmann.Data.Oracle dd ? (listCs dd !! i) = i
listWithSeparator :: IsList l => Text -> (Text -> Either String (Item l)) -> Text -> Either String lconfig-ini Data.Ini.Config Convert a reader for a value into a reader for a list of those values, separated by a chosen separator. This will split apart the string on that separator, get rid of leading and trailing whitespace on the individual chunks, and then attempt to parse each of them according to the function provided, turning the result into a list. This is overloaded with the IsList typeclass, so it can be used transparently to parse other list-like types.
>>> listWithSeparator "," number "2, 3, 4" :: Either String [Int] Right [2,3,4] >>> listWithSeparator " " number "7 8 9" :: Either String [Int] Right [7,8,9] >>> listWithSeparator ":" string "/bin:/usr/bin" :: Either String [FilePath] Right ["/bin","/usr/bin"] >>> listWithSeparator "," number "7 8 9" :: Either String [Int] Left "Unable to parse \"7 8 9\" as a value of type Int"
listWithSeparator :: IsList l => Text -> FieldValue (Item l) -> FieldValue lconfig-ini Data.Ini.Config.Bidir Represents a field whose value is a sequence of other values which are delimited by a given string, and whose individual values are described by another FieldValue value. This uses GHC's IsList typeclass to convert back and forth between sequence types.
listFDiv :: forall (f :: Type -> Type) x . ListF f x -> Div f xfunctor-combinators Data.Functor.Contravariant.Divisible.Free Div is isomorphic to ListF for contravariant f. This witnesses one way of that isomorphism.
listToTuple :: ListTuple tuple tuple' as bs => HList as -> tuplegeneric-lens-core Data.Generics.Product.Internal.HList No documentation available.