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. (%^) :: forall (n :: Nat) (m :: Nat) . SNat n -> SNat m -> SNat (n ^ m)

    typelits-witnesses GHC.TypeLits.Witnesses

    Exponentiation of SNats. This also will provide the correct KnownNat instance for SNat (n ^ m), so can be used as a way to "exponentiate" KnownNat instances. This stands in for the function with the same name from Data.Singletons.TypeLits.

  2. (%:) :: MonadState r m => T r a -> (a -> a) -> m ()

    data-accessor-mtl Data.Accessor.Monad.MTL.State

    Infix variant of modify.

  3. (%=) :: MonadState r m => T r a -> a -> m ()

    data-accessor-mtl Data.Accessor.Monad.MTL.State

    Infix variant of set.

  4. (%?) :: Metadata -> Value -> Query

    libmpd Network.MPD

    Create a query for a tag containing a value. Since MPD 0.21.

  5. (%>) :: (Partial, MonadReader r m, MonadRules m) => FilePattern -> (Path Rel File -> RAction r ()) -> m ()

    shake-plus Development.Shake.Plus.FileRules

    Lifted version of %> using well-typed Paths

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

    base GHC.Real

    No documentation available.

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

    base GHC.Real

    No documentation available.

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

    base GHC.Real

    No documentation available.

  9. ( #%%= ) :: MonadState s m => ALens s s a b -> (a -> (r, b)) -> m r

    lens Control.Lens.Lens

    A version of (%%=) that works on ALens.

  10. ( #%%~ ) :: Functor f => ALens s t a b -> (a -> f b) -> s -> f t

    lens Control.Lens.Lens

    A version of (%%~) that works on ALens.

    >>> ("hello","world") & _2 #%%~ \x -> (length x, x ++ "!")
    (5,("hello","world!"))
    

Page 26 of many | Previous | Next