Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
data (a6989586621679356734 :: m a)
>>@#@$$ (b1 :: TyFun m b m b)singletons-base Prelude.Singletons No documentation available.
type family (a6989586621679356734 :: m a)
>>@#@$$$ (a6989586621679356735 :: m b) :: m bsingletons-base Prelude.Singletons No documentation available.
data (a6989586621679244448 :: a)
>@#@$$ (b :: TyFun a Bool)singletons-base Prelude.Singletons No documentation available.
type family (a6989586621679244448 :: a)
>@#@$$$ (a6989586621679244449 :: a) :: Boolsingletons-base Prelude.Singletons No documentation available.
data (a6989586621679139511 :: Bool)
||@#@$$ (b :: TyFun Bool Bool)singletons-base Prelude.Singletons No documentation available.
type family (a6989586621679139511 :: Bool)
||@#@$$$ (a6989586621679139512 :: Bool) :: Boolsingletons-base Prelude.Singletons No documentation available.
(
|>$ ) :: (Integral a, FiniteBits a) => Buffer % 1 -> a -> Buffertext-builder-linear Data.Text.Builder.Linear.Buffer Append the decimal representation of a bounded integral number.
(
|>$$ ) :: Integral a => Buffer % 1 -> a -> Buffertext-builder-linear Data.Text.Builder.Linear.Buffer Append the decimal representation of an unbounded integral number.
(
<$ ) :: Functor f => a -> f b -> f abase-compat-batteries Control.Monad.Compat Replace all locations in the input with the same value. The default definition is fmap . const, but this may be overridden with a more efficient version.
Examples
Perform a computation with Maybe and replace the result with a constant value if it is Just:>>> 'a' <$ Just 2 Just 'a' >>> 'a' <$ Nothing Nothing
(
<$!> ) :: Monad m => (a -> b) -> m a -> m bbase-compat-batteries Control.Monad.Compat Strict version of <$>.