Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
.: ) :: (Applicative f, Arrow arrow) => f (arrow b c) -> f (arrow a b) -> f (arrow a c)synthesizer-core Synthesizer.ApplicativeUtility No documentation available.
-
data-effects-core Data.Effect.OpenUnion No documentation available.
-
data-effects-core Data.Effect.OpenUnion No documentation available.
(
.: ) :: FromGraphSON a => KeyMap GValue -> Key -> Parser agreskell-core Data.Greskell.GraphSON Like Aeson's .:, but for FromGraphSON.
(
.: ) :: FromValue a => Object -> Key -> Parser ahpack Hpack.Yaml No documentation available.
(
.:? ) :: FromValue a => Object -> Key -> Parser (Maybe a)hpack Hpack.Yaml No documentation available.
(
+: ) :: NvimObject o => o -> [Object] -> [Object]nvim-hs Neovim Convenient operator to create a list of Object from normal values. values +: of :+ different :+ types :+ can +: be +: combined +: this +: way +: []
(
+: ) :: NvimObject o => o -> [Object] -> [Object]nvim-hs Neovim.Classes Convenient operator to create a list of Object from normal values. values +: of :+ different :+ types :+ can +: be +: combined +: this +: way +: []
(
.: ) :: (c -> d) -> (a -> b -> c) -> a -> b -> done-liner Generics.OneLiner.Internal No documentation available.
-
sayable Text.Sayable A helper operator that applies the first argument (which converts an array of 'Prettyprinter.Doc ann' elements to a single 'PrettyPrinter.Doc ann' element) to the second argument, which is a Foldable collection of Sayable items. This is essentially a combination of the &! and &:* operators. Unlike the other operators defined in this package, this is a trinary operator rather than a binary operator. Because function application (whitespace) is the highest precedence, the last argument will typically need a preceeding $ to prevent applying the second argument to the third argument before applying this operator.
>>> sez @"info" $ t'"three:" &- (PP.align . PP.vsep &!:* (t'" or")) [1, 2, 3::Int] "three: 1 or\n 2 or\n 3"