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.
(
%^ ) :: 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.
(
%: ) :: MonadState r m => T r a -> (a -> a) -> m ()data-accessor-mtl Data.Accessor.Monad.MTL.State Infix variant of modify.
(
%= ) :: MonadState r m => T r a -> a -> m ()data-accessor-mtl Data.Accessor.Monad.MTL.State Infix variant of set.
(
%? ) :: Metadata -> Value -> Querylibmpd Network.MPD Create a query for a tag containing a value. Since MPD 0.21.
-
shake-plus Development.Shake.Plus.FileRules -
base GHC.Real No documentation available.
(
^%^ ) :: Integral a => Rational -> a -> Rationalbase GHC.Real No documentation available.
(
^^%^^ ) :: Integral a => Rational -> a -> Rationalbase GHC.Real No documentation available.
(
#%%= ) :: MonadState s m => ALens s s a b -> (a -> (r, b)) -> m rlens Control.Lens.Lens (
#%%~ ) :: Functor f => ALens s t a b -> (a -> f b) -> s -> f tlens Control.Lens.Lens A version of (%%~) that works on ALens.
>>> ("hello","world") & _2 #%%~ \x -> (length x, x ++ "!") (5,("hello","world!"))