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.
(
^%^ ) :: Integral a => Rational -> a -> Rationalprotolude Protolude.Base No documentation available.
(
^^%^^ ) :: Integral a => Rational -> a -> Rationalprotolude Protolude.Base No documentation available.
-
numeric-prelude Number.Ratio No documentation available.
-
numhask NumHask No documentation available.
-
numhask NumHask.Data.Rational No documentation available.
(
&%> ) :: 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.(
|%> ) :: 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 %>.
(
<$%> ) :: Functor (Flip t c) => (a -> b) -> t a c -> t b ctype-flip Data.Type.Flip No documentation available.
(
<*%> ) :: Applicative (Flip t c) => t (a -> b) c -> t a c -> t b ctype-flip Data.Type.Flip No documentation available.
(
=<<% ) :: Monad (Flip t c) => (a -> t b c) -> t a c -> t b ctype-flip Data.Type.Flip No documentation available.