Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
forAllShrinkShow :: Testable prop => Gen a -> (a -> [a]) -> (a -> String) -> (a -> prop) -> Propertytasty-quickcheck Test.Tasty.QuickCheck Like forAllShrink, but with an explicitly given show function.
functionShow :: (Show a, Read a) => (a -> c) -> a :-> ctasty-quickcheck Test.Tasty.QuickCheck -
tasty-quickcheck Test.Tasty.QuickCheck Optional; used internally in order to improve shrinking. Tests a property but also quantifies over an extra value (with a custom shrink and show function). The Testable instance for functions defines propertyForAllShrinkShow in a way that improves shrinking.
putTextToShowS :: PutText ShowSHUnit Test.HUnit.Text Accumulates persistent lines (dropping progess lines) for return by runTestText. The accumulated lines are represented by a ShowS (String -> String) function whose first argument is the string to be appended to the accumulated report lines.
_Show :: (Read a, Show a) => Prism' String alens Control.Lens.Combinators This is an improper prism for text formatting based on Read and Show. This Prism is "improper" in the sense that it normalizes the text formatting, but round tripping is idempotent given sane Read/Show instances.
>>> _Show # 2 "2"
>>> "EQ" ^? _Show :: Maybe Ordering Just EQ
_Show ≡ prism' show readMaybe
_Show :: (Read a, Show a) => Prism' String alens Control.Lens.Prism This is an improper prism for text formatting based on Read and Show. This Prism is "improper" in the sense that it normalizes the text formatting, but round tripping is idempotent given sane Read/Show instances.
>>> _Show # 2 "2"
>>> "EQ" ^? _Show :: Maybe Ordering Just EQ
_Show ≡ prism' show readMaybe
-
optparse-applicative Options.Applicative Show global help information in subparser usage.
prefHelpShowGlobal :: ParserPrefs -> Booloptparse-applicative Options.Applicative when displaying subparsers' usage help, show parent options under a "global options" section (default: False)
prefShowHelpOnEmpty :: ParserPrefs -> Booloptparse-applicative Options.Applicative show the help text for a command or subcommand if it fails with no input (default: False)
prefShowHelpOnError :: ParserPrefs -> Booloptparse-applicative Options.Applicative always show help text on parse errors (default: False)