Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
hlint Language.Haskell.HLint The source code the idea relates to.
ideaTo :: Idea -> Maybe Stringhlint Language.Haskell.HLint The suggested replacement, or Nothing for no replacement (e.g. on parse errors).
-
lucid Lucid.Html5 The id attribute.
idct :: (Vector v CD, Vector v Double) => v Double -> v Doublestatistics Statistics.Transform Inverse discrete cosine transform (DCT-III). It's inverse of dct only up to scale parameter:
(idct . dct) x = (* length x)
idct_ :: (Vector v CD, Vector v Double) => v CD -> v Doublestatistics Statistics.Transform Inverse discrete cosine transform (DCT-III). Only real part of vector is transformed, imaginary part is ignored.
-
diagrams-lib Diagrams.Prelude Obtain an IndexedFold by dropping elements from another IndexedFold, IndexedLens, IndexedGetter or IndexedTraversal while a predicate holds.
idroppingWhile :: (i -> a -> Bool) -> IndexedFold i s a -> IndexedFold i s a idroppingWhile :: (i -> a -> Bool) -> IndexedTraversal' i s a -> IndexedFold i s a -- see notes idroppingWhile :: (i -> a -> Bool) -> IndexedLens' i s a -> IndexedFold i s a -- see notes idroppingWhile :: (i -> a -> Bool) -> IndexedGetter i s a -> IndexedFold i s a
Note: As with droppingWhile applying idroppingWhile to an IndexedLens or IndexedTraversal will still allow you to use it as a pseudo-IndexedTraversal, but if you change the value of the first target to one where the predicate returns True, then you will break the Traversal laws and Traversal fusion will no longer be sound. idempotent :: (Show a, Eq a, GenValid a) => (a -> a) -> Propertygenvalidity-sydtest Test.Syd.Validity No documentation available.
idempotentOnArbitrary :: (Show a, Eq a, Arbitrary a) => (a -> a) -> Propertygenvalidity-sydtest Test.Syd.Validity id is idempotent for any type:
idempotentOnArbitrary (id :: Int -> Int)
const, given any input, is idempotent for any type as well:\int -> idempotentOnArbitrary (const int :: Int -> Int)
idempotentOnGen :: (Show a, Eq a) => (a -> a) -> Gen a -> (a -> [a]) -> Propertygenvalidity-sydtest Test.Syd.Validity No documentation available.
identity :: (Show a, Eq a, GenValid a) => (a -> a -> a) -> a -> Propertygenvalidity-sydtest Test.Syd.Validity identity ((*) :: Int -> Int -> Int) 1
identity ((+) :: Int -> Int -> Int) 0