Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
csum :: (CFoldable f, Num a, Dom f a) => f a -> asubcategories Control.Subcategory.Foldable No documentation available.
BadChecksum :: FileOffset -> TarExceptiontar-conduit Data.Conduit.Tar.Types No documentation available.
Assumed :: String -> ParamMatchtasty-sugar Test.Tasty.Sugar This parameter value was not specified in the filename of the expected file, so the value is being synthetically supplied. This is used for parameters that have known values but none is present: an Expectation is created for each possible parameter value, identifying each as Assumed.
type
GSumCo (gen :: Type -> Type) a r = GSumCo_ gen Rep a r ()test-fun Test.Fun The list of cogenerators for a generic type, one for each constructor.
type
GSumCo (gen :: Type -> Type) a r = GSumCo_ gen Rep a r ()test-fun Test.Fun.Internal.Generic The list of cogenerators for a generic type, one for each constructor.
class
GSumCoArb (gen :: Type -> Type) (f :: Type -> Type)test-fun Test.Fun.Internal.Generic No documentation available.
type family
GSumCo_ (gen :: Type -> Type) (f :: Type -> Type) r ttest-fun Test.Fun.Internal.Generic No documentation available.
gsumCoarb :: GSumCoArb gen f => Proxy r -> t -> GSumCo_ gen f r ttest-fun Test.Fun.Internal.Generic No documentation available.
-
testing-feat Test.Feat.Enumerate No documentation available.
-
text-display Data.Text.Display.Generic Constraint to prevent misuse of RecordInstance deriving via mechanism.
Example
data MySum = A | B | C deriving stock (Generic) deriving (Display) via (RecordInstance MySum)
• 🚫 Cannot derive Display instance for MySum via RecordInstance due to sum type 💡 Sum types should use a manual instance or derive one via ShowInstance. • When deriving the instance for (Display MySum)