Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. ParseReader :: DList PathPiece -> Value -> ParseReader

    aeson-better-errors Data.Aeson.BetterErrors.Internal

    No documentation available.

  2. newtype ParseT err (m :: Type -> Type) a

    aeson-better-errors Data.Aeson.BetterErrors.Internal

    The type of parsers: things which consume JSON values and produce either detailed errors or successfully parsed values (of other types). The err type parameter is for custom validation errors; for parsers that don't produce any custom validation errors, I recommend you just stick a type variable in for full generality:

    asTuple :: Parse e (Int, Int)
    asTuple = (,) <$> nth 0 asIntegral <*> nth 1 asIntegral
    
    The m parameter allows you to run the parser within an abitrary underlying Monad. You may want to use Parse in most cases instead, and all functions in this module work on either.

  3. ParseT :: ReaderT ParseReader (ExceptT (ParseError err) m) a -> ParseT err (m :: Type -> Type) a

    aeson-better-errors Data.Aeson.BetterErrors.Internal

    No documentation available.

  4. data PathPiece

    aeson-better-errors Data.Aeson.BetterErrors.Internal

    A piece of a path leading to a specific part of the JSON data. Internally, a list of these is maintained as the parser traverses the JSON data. This list is included in the error if one occurs.

  5. module Data.Aeson.JSONPath.Parser

    This module is responsible for parsing the JSONPath query

  6. Paren :: LogicalOrExpr a -> BasicExpr a

    aeson-jsonpath Data.Aeson.JSONPath.Types

    No documentation available.

  7. PR :: String -> String -> String -> PhoneticsRepresentationPL

    aftovolio Aftovolio.General.Base

    No documentation available.

  8. PRAfter :: String -> String -> PhoneticsRepresentationPL

    aftovolio Aftovolio.General.Base

    No documentation available.

  9. PRAfterC :: String -> String -> Char -> String -> PhoneticsRepresentationPLX

    aftovolio Aftovolio.General.Base

    No documentation available.

  10. PRBefore :: String -> String -> PhoneticsRepresentationPL

    aftovolio Aftovolio.General.Base

    No documentation available.

Page 1183 of many | Previous | Next