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.

  1. 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.

  2. seqArrayBounds :: Strategy i -> Strategy (Array i a)

    parallel Control.Seq

    Evaluate the bounds of an array according to the given strategy.

  3. seqFoldable :: Foldable t => Strategy a -> Strategy (t a)

    parallel Control.Seq

    Evaluate the elements of a foldable data structure according to the given strategy.

  4. 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.

  5. seqListN :: Int -> Strategy a -> Strategy [a]

    parallel Control.Seq

    Evaluate the first n elements of a list according to the given strategy.

  6. 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.

  7. 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.

  8. seqTuple2 :: Strategy a -> Strategy b -> Strategy (a, b)

    parallel Control.Seq

    No documentation available.

  9. seqTuple3 :: Strategy a -> Strategy b -> Strategy c -> Strategy (a, b, c)

    parallel Control.Seq

    No documentation available.

  10. seqTuple4 :: Strategy a -> Strategy b -> Strategy c -> Strategy d -> Strategy (a, b, c, d)

    parallel Control.Seq

    No documentation available.

Page 253 of many | Previous | Next