Hoogle Search
Within LTS Haskell 24.25 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
|%| ) :: (Applicative a, Moddable b) => a b -> a b -> a btidal-core Sound.Tidal.Core No documentation available.
(
||% ) :: Moddable a => Pattern a -> Pattern a -> Pattern atidal-core Sound.Tidal.Core No documentation available.
-
units Data.Metrology.Linear Infix synonym for quOf
-
code-conjure Conjure.Engine The % constructor lifted over Exprs.
> val (2 :: Integer) -%- val (3 :: Integer) 2 % 3 :: Ratio Integer
This only accepts Exprs bound to the Integer type. -
code-conjure Conjure.Expr The % constructor lifted over Exprs.
> val (2 :: Integer) -%- val (3 :: Integer) 2 % 3 :: Ratio Integer
This only accepts Exprs bound to the Integer type. -
ghci-hexcalc Data.GHex Integer mod
>>> 18 .% 16 0x0000_0000_0000_0002
(
~% ) :: Formattable a => String -> a -> FormatArghformat Text.Format No documentation available.
-
o-clock Time.Rational More convenient name for promoted constructor of Rat.
-
o-clock Time.Rational No documentation available.
type family (m :: Rat)
>=% (n :: Rat) :: Boolo-clock Time.Rational Comparison of type-level rationals, as a function.
>>> :kind! (1 :% 42) >=% (5 :% 42) (1 :% 42) >=% (5 :% 42) :: Bool = 'False
>>> :kind! (5 :% 42) >=% (1 :% 42) (5 :% 42) >=% (1 :% 42) :: Bool = 'True
>>> :kind! (42 :% 1) >=% (42 :% 1) (42 :% 1) >=% (42 :% 1) :: Bool = 'True