Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
seqArray :: Strategy a -> Strategy (Array i a)parallel Control.Seq Evaluate the elements of an array according to the given strategy. Evaluation of the array bounds may be triggered as a side effect.
seqArrayBounds :: Strategy i -> Strategy (Array i a)parallel Control.Seq Evaluate the bounds of an array according to the given strategy.
seqFoldable :: Foldable t => Strategy a -> Strategy (t a)parallel Control.Seq Evaluate the elements of a foldable data structure according to the given strategy.
seqList :: Strategy a -> Strategy [a]parallel Control.Seq Evaluate each element of a list according to the given strategy. This function is a specialisation of seqFoldable to lists.
seqListN :: Int -> Strategy a -> Strategy [a]parallel Control.Seq Evaluate the first n elements of a list according to the given strategy.
seqListNth :: Int -> Strategy a -> Strategy [a]parallel Control.Seq Evaluate the nth element of a list (if there is such) according to the given strategy. The spine of the list up to the nth element is evaluated as a side effect.
seqMap :: Strategy k -> Strategy v -> Strategy (Map k v)parallel Control.Seq Evaluate the keys and values of a map according to the given strategies.
seqTuple2 :: Strategy a -> Strategy b -> Strategy (a, b)parallel Control.Seq No documentation available.
seqTuple3 :: Strategy a -> Strategy b -> Strategy c -> Strategy (a, b, c)parallel Control.Seq No documentation available.
seqTuple4 :: Strategy a -> Strategy b -> Strategy c -> Strategy d -> Strategy (a, b, c, d)parallel Control.Seq No documentation available.