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.
(
.:? ) :: FromYAML a => Mapping Pos -> Text -> Parser (Maybe a)HsYAML Data.YAML Retrieve optional value in Mapping indexed by a !!str Text key. Nothing is returned if the key is missing or points to a tag:yaml.org,2002:null node. This combinator only fails if the key exists but cannot be converted to the required type. See also .:!.
-
data-accessor-transformers Data.Accessor.Monad.Trans.RWS Infix variant of modify.
(
%: ) :: forall (m :: Type -> Type) r a . Monad m => T r a -> (a -> a) -> StateT r m ()data-accessor-transformers Data.Accessor.Monad.Trans.State Infix variant of modify.
(
=: ) :: String -> Assertion -> TestTreetasty-hslua Test.Tasty.HsLua Infix alias for testCase.
(
?: ) :: HasCallStack => String -> LuaE e Bool -> TestTreetasty-hslua Test.Tasty.HsLua Infix alias for luaTestBool.
-
express Data.Express.Express Type restricted version of const that forces its first argument to have the same type as the second.
value -: (undefined :: Ty) = value :: Ty
(
->: ) :: (a -> b) -> b -> a -> bexpress Data.Express.Express Type restricted version of const that forces the result of its first argument to have the same type as the second.
f ->: (undefined :: Ty) = f :: a -> Ty
(
->>: ) :: (a -> b -> c) -> c -> a -> b -> cexpress Data.Express.Express Type restricted version of const that forces the result of the result of its first argument to have the same type as the second.
f ->>: (undefined :: Ty) = f :: a -> b -> Ty
(
->>>: ) :: (a -> b -> c -> d) -> d -> a -> b -> c -> dexpress Data.Express.Express Type restricted version of const that forces the result of the result of the result of its first argument to have the same type as the second.
(
->>>>: ) :: (a -> b -> c -> d -> e) -> e -> a -> b -> c -> d -> eexpress Data.Express.Express Forces the result type of a 4-argument function.