Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

  1. (^%^) :: Integral a => Rational -> a -> Rational

    protolude Protolude.Base

    No documentation available.

  2. (^^%^^) :: Integral a => Rational -> a -> Rational

    protolude Protolude.Base

    No documentation available.

  3. (:%) :: a -> a -> T a

    numeric-prelude Number.Ratio

    No documentation available.

  4. (:%) :: a -> a -> Ratio a

    numhask NumHask

    No documentation available.

  5. (:%) :: a -> a -> Ratio a

    numhask NumHask.Data.Rational

    No documentation available.

  6. (&%>) :: Located => [FilePattern] -> ([FilePath] -> Action ()) -> Rules ()

    shake Development.Shake

    Define a rule for building multiple files at the same time. Think of it as the AND (&&) equivalent of %>. As an example, a single invocation of GHC produces both .hi and .o files:

    ["*.o","*.hi"] &%> \[o,hi] -> do
    let hs = o -<.> "hs"
    need ... -- all files the .hs import
    cmd "ghc -c" [hs]
    
    However, in practice, it's usually easier to define rules with %> and make the .hi depend on the .o. When defining rules that build multiple files, all the FilePattern values must have the same sequence of // and * wildcards in the same order. This function will create directories for the result files, if necessary.

  7. (|%>) :: Located => [FilePattern] -> (FilePath -> Action ()) -> Rules ()

    shake Development.Shake

    Define a set of patterns, and if any of them match, run the associated rule. Defined in terms of %>. Think of it as the OR (||) equivalent of %>.

  8. (<$%>) :: Functor (Flip t c) => (a -> b) -> t a c -> t b c

    type-flip Data.Type.Flip

    No documentation available.

  9. (<*%>) :: Applicative (Flip t c) => t (a -> b) c -> t a c -> t b c

    type-flip Data.Type.Flip

    No documentation available.

  10. (=<<%) :: Monad (Flip t c) => (a -> t b c) -> t a c -> t b c

    type-flip Data.Type.Flip

    No documentation available.

Page 33 of many | Previous | Next