=
Note: Conversion is based on the latest values and formulas.
Hoogle set:stackage set:haskell-platform set:included-with-ghc package:abstract-deque package:abstract-deque-tests package:abstract-par package:AC-Angle package:acc package:ace package:acid-state package:action-permutations package:active package:ad package:ad-delcont package:adjunctions package:adler32 package:advent-of-code-api package:aern2-mp package:aern2-real …
wreq - Hoogle set:stackage set:haskell-platform set:included-with-ghc package:abstract-deque package:abstract-deque-tests package:abstract-par package:AC-Angle package:acc package:ace package:acid-state package:action-permutations package:active package:ad package:ad-delcont package:adjunctions package:adler32 package:advent-of-code-api package:aern2-mp ...
sequence - Hoogle - Haskell 13 May 2025 · Like the sequence but streaming. The result type is a stream of a's, but is not accumulated; the effects of the elements of the original stream are interleaved in the resulting stream.
Haskell We would like to show you a description here but the site won’t allow us.
partition - Hoogle - Haskell The partition function takes a predicate p and a sequence xs and returns sequences of those elements which do and do not satisfy the predicate.
seq 2024 - Hoogle The value of seq a b is bottom if a is bottom, and otherwise equal to b. In other words, it evaluates the first argument a to weak head normal form (WHNF). seq is usually introduced to improve performance by avoiding unneeded laziness. A note on evaluation order: the expression seq a b does not guarantee that a will be evaluated before b.
tcc - Hoogle set:stackage set:haskell-platform set:included-with-ghc package:abstract-deque package:abstract-deque-tests package:abstract-par package:AC-Angle package:acc package:ace package:acid-state package:action-permutations package:active package:ad package:ad-delcont package:adjunctions package:adler32 package:advent-of-code-api package:aern2-mp ...
sorton 2023 - Hoogle sortOn sorts the specified Seq by comparing the results of a key function applied to each element. sortOn f is equivalent to sortBy (compare `on` f), but has the performance advantage of only evaluating f once for each element in the input list. This is called the decorate-sort-undecorate paradigm, or Schwartzian transform.
Store - Hoogle - hoogle.haskell.org Store's builtin instances serialize in a format which depends on machine endianness. Store's builtin instances trust the data when deserializing. For example, the deserialization of Vector will read the vector's link from the first 8 bytes. It will then allocate enough memory to store all the elements. Malicious or malformed input could cause allocation of large amounts of memory. See https ...