Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. parseToFlattenedMap :: forall (c :: Type -> Type -> Type) k v s . (IsList (c k v), Item (c k v) ~ (k, v)) => (s -> Parser k) -> (s -> Parser v) -> Vector s -> Parser (FlattenedMap c k v)

    greskell Data.Greskell

    General parser for FlattenedMap.

  2. parseToGMap :: (IsList (c k v), Item (c k v) ~ (k, v)) => (s -> Parser k) -> (s -> Parser v) -> (KeyMap s -> Parser (c k v)) -> Either (KeyMap s) (Vector s) -> Parser (GMap c k v)

    greskell Data.Greskell

    General parser for GMap.

  3. parseToGMapEntry :: FromJSONKey k => (s -> Parser k) -> (s -> Parser v) -> Either (KeyMap s) (Vector s) -> Parser (GMapEntry k v)

    greskell Data.Greskell

    General parser for GMapEntry.

  4. pathToPMap :: Path a -> PMap Multi a

    greskell Data.Greskell

    Convert a Path into PMap. In the result PMap, the keys are the labels in the Path, and the values are the objects associated with the labels. The values are stored in the same order in the Path. Objects without any label are discarded.

  5. unFlattenedMap :: FlattenedMap (c :: Type -> Type -> Type) k v -> c k v

    greskell Data.Greskell

    No documentation available.

  6. unGMap :: GMap c k v -> c k v

    greskell Data.Greskell

    Get the map implementation from GMap.

  7. unGMapEntry :: GMapEntry k v -> (k, v)

    greskell Data.Greskell

    Get the key-value pair from GMapEntry.

  8. data PMapLookupException

    greskell Data.Greskell.AsLabel

    An Exception raised when looking up values from PMap.

  9. PMapNoSuchKey :: Text -> PMapLookupException

    greskell Data.Greskell.AsLabel

    The PMap doesn't have the given key.

  10. PMapParseError :: Text -> String -> PMapLookupException

    greskell Data.Greskell.AsLabel

    Failed to parse the value into the type that the PMapKey indicates. The Text is the key, and the String is the error message.

Page 1168 of many | Previous | Next