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.
ideclExt :: ImportDecl pass -> XCImportDecl passghc Language.Haskell.Syntax.ImpExp No documentation available.
ideclImportList :: ImportDecl pass -> Maybe (ImportListInterpretation, XRec pass [LIE pass])ghc Language.Haskell.Syntax.ImpExp Explicit import list (EverythingBut => hiding, names)
ideclName :: ImportDecl pass -> XRec pass ModuleNameghc Language.Haskell.Syntax.ImpExp Module name.
ideclPkgQual :: ImportDecl pass -> ImportDeclPkgQual passghc Language.Haskell.Syntax.ImpExp Package qualifier.
ideclQualified :: ImportDecl pass -> ImportDeclQualifiedStyleghc Language.Haskell.Syntax.ImpExp If/how the import is qualified.
ideclSafe :: ImportDecl pass -> Boolghc Language.Haskell.Syntax.ImpExp True => safe import
ideclSource :: ImportDecl pass -> IsBootInterfaceghc Language.Haskell.Syntax.ImpExp IsBoot = {-# SOURCE #-} import
idempotent :: (Show a, Eq a, GenValid a) => (a -> a) -> Propertygenvalidity-hspec Test.Validity No documentation available.
idempotentOnArbitrary :: (Show a, Eq a, Arbitrary a) => (a -> a) -> Propertygenvalidity-hspec Test.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-hspec Test.Validity No documentation available.