Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. showMutantBindings :: ShowMutable a => [String] -> a -> a -> String

    fitspec Test.FitSpec.ShowMutable

    Show a Mutant as the list of bindings that differ from the original function(s).

    > putStrLn $ showMutantBindings ["p && q","not p"] ((&&),not) ((==),id)
    False && False = True
    not False = False
    not True  = True
    
    Can possibly be copied into the source of the original function for manipulation.

  2. showMutantDefinition :: ShowMutable a => [String] -> a -> a -> String

    fitspec Test.FitSpec.ShowMutable

    Show a Mutant as a new complete top-level definition, with a prime appended to the name of the mutant.

    > putStrLn $ showMutantDefinition ["p && q","not p"] ((&&),not) ((==),id)
    False &&- False = True
    p     &&- q     = p && q
    not' False = False
    not' True  = True
    not' p     = not p
    

  3. showMutantNested :: ShowMutable a => [String] -> a -> a -> String

    fitspec Test.FitSpec.ShowMutable

    Show a Mutant as a tuple of nested lambdas. Very similar to showMutantAsTuple, but the underlying data structure is not flatten: so the output is as close as possible to the underlying representation.

  4. showsPrec :: (Natural n, Show a) => Int -> T n a -> ShowS

    fixed-length Data.FixedLength

    No documentation available.

  5. showFieldName :: forall (names :: [Symbol]) . FieldName names -> Text

    forma Web.Forma

    Project textual representation of path to a field.

  6. showAngle :: Double -> String

    geodetics Geodetics.Geodetic

    Show an angle as degrees, minutes and seconds to two decimal places.

  7. showGeodeticDDDMMSS :: Bool -> Geodetic e -> String

    geodetics Geodetics.Geodetic

    Show Geodetic as a pair of angles in the DDDMMSS format, e.g. 343123.52N, 461356.43W.

  8. showGeodeticLatLong :: Geodetic e -> String

    geodetics Geodetics.Geodetic

    Show Geodetic as a pair of degrees, minutes, and seconds. This is similar to the Show instance for Geodetic, except it does not include the altitude and the ellipsoid.

  9. showGeodeticNSEWDecimal :: Geodetic e -> String

    geodetics Geodetics.Geodetic

    Show Geodetic as a pair of decimal degrees NSEW, e.g. 34.52327N, 46.23234W.

  10. showGeodeticSignedDecimal :: Geodetic e -> String

    geodetics Geodetics.Geodetic

    Show Geodetic as a pair of signed decimal degrees (5 decimal places of precision), e.g. 34.52327, -46.23234.

Page 146 of many | Previous | Next