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.

  1. (|%|) :: (Applicative a, Moddable b) => a b -> a b -> a b

    tidal-core Sound.Tidal.Core

    No documentation available.

  2. (||%) :: Moddable a => Pattern a -> Pattern a -> Pattern a

    tidal-core Sound.Tidal.Core

    No documentation available.

  3. (^%) :: forall (dim :: [Factor Type]) (lcsu :: LCSU Type) unit f a . (ValidDLU dim lcsu unit, Functor f, Fractional a) => f a -> unit -> Qu dim lcsu (f a)

    units Data.Metrology.Linear

    Infix synonym for quOf

  4. (-%-) :: Expr -> Expr -> Expr

    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.

  5. (-%-) :: Expr -> Expr -> Expr

    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.

  6. (.%) :: Hex -> Hex -> Hex

    ghci-hexcalc Data.GHex

    Integer mod

    >>> 18 .% 16
    0x0000_0000_0000_0002
    

  7. (~%) :: Formattable a => String -> a -> FormatArg

    hformat Text.Format

    No documentation available.

  8. type (:%) = '(::%)

    o-clock Time.Rational

    More convenient name for promoted constructor of Rat.

  9. (::%) :: Nat -> Nat -> Rat

    o-clock Time.Rational

    No documentation available.

  10. type family (m :: Rat) >=% (n :: Rat) :: Bool

    o-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
    

Page 36 of many | Previous | Next