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.
(
.:$! ) :: SafeJSON a => Object -> Key -> Parser (Maybe a)safe-json Data.SafeJSON Similar to .:!, but uses safeFromJSON instead of parseJSON to maybe parse the value in the given field.
(
.:$? ) :: SafeJSON a => Object -> Key -> Parser (Maybe a)safe-json Data.SafeJSON Similar to .:?, but uses safeFromJSON instead of parseJSON to maybe parse the value in the given field.
(
@: ) :: TagName -> [AttributePredicate] -> Selectorscalpel Text.HTML.Scalpel The @: operator creates a Selector by combining a TagName with a list of AttributePredicates.
(
##:> ) :: Arg a -> PStruct ([a] -> b) -> PStruct bservant-cli Servant.CLI.Internal.PStruct Add a repeating argument parser.
(
#:> ) :: Arg a -> PStruct (a -> b) -> PStruct bservant-cli Servant.CLI.Internal.PStruct Add a single argument praser.
(
$:> ) :: String -> PStruct a -> PStruct aservant-cli Servant.CLI.Internal.PStruct Shift by a path component.
(
%:> ) :: Parser a -> PStruct (a -> b) -> PStruct bservant-cli Servant.CLI.Internal.PStruct Add a request body to all endpoints. If done more than once per endpoint, it runs *both* parsers; however, we can only send one request body, so this is undefined behavior as a client.
(
?:> ) :: Opt a -> PStruct (a -> b) -> PStruct bservant-cli Servant.CLI.Internal.PStruct Add a command-line option to all endpoints.
-
sexp-grammar Language.SexpGrammar Property by a key grammar. Infix version of key.
-
sexp-grammar Language.SexpGrammar Optional property by a key grammar. Infix version of optKey.