Hoogle Search

Within LTS Haskell 24.37 (ghc-9.10.3)

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

  1. parseListValues :: forall m (p :: Type -> Type) v . (PropertyMap m, Property p, FromGraphSON v) => Text -> m p GValue -> Parser [v]

    greskell Data.Greskell.Graph.PropertyMap

    Lookup a list of property values from a PropertyMap by the given key, and parse them. In version 0.1.1.0 and before, this function took an argument m p (GraphSON Value). This has changed, because property types for AVertex etc have changed.

  2. lookupList :: forall k (c :: Type -> Type) v . (PMapKey k, NonEmptyLike c) => k -> PMap c v -> [v]

    greskell Data.Greskell.PMap

    Lookup all items for the key. If there is no item for the key, it returns an empty list.

  3. lookupListAs :: forall k (c :: Type -> Type) a . (PMapKey k, NonEmptyLike c, PMapValue k ~ a, FromGraphSON a) => k -> PMap c GValue -> Either PMapLookupException (NonEmpty a)

    greskell Data.Greskell.PMap

    Look up the values and parse them into a.

  4. lookupListAs' :: forall k (c :: Type -> Type) a . (PMapKey k, NonEmptyLike c, PMapValue k ~ Maybe a, FromGraphSON a) => k -> PMap c GValue -> Either PMapLookupException [Maybe a]

    greskell Data.Greskell.PMap

    Similar to lookupListAs, but this function accepts null results. If the key k is not found in the map, it returns an empty list. If the key k is found and nulls are included in the values, they are obtained as Nothing.

  5. pMapFromList :: forall (c :: Type -> Type) v . NonEmptyLike c => [(Text, v)] -> PMap c v

    greskell Data.Greskell.PMap

    Make a PMap from list of entries.

  6. pMapToList :: forall (c :: Type -> Type) v . Foldable c => PMap c v -> [(Text, v)]

    greskell Data.Greskell.PMap

    List up all entries.

  7. data SimpleListSpec spec

    grisette Grisette.Internal.Core.Data.Class.GenSym

    Specification for list generation of a specific length.

    >>> runFresh (simpleFresh (SimpleListSpec 2 ())) "c" :: [SymBool]
    [c@0,c@1]
    

  8. SimpleListSpec :: Int -> spec -> SimpleListSpec spec

    grisette Grisette.Internal.Core.Data.Class.GenSym

    No documentation available.

  9. genListMaxLength :: ListSpec spec -> Int

    grisette Grisette.Internal.Core.Data.Class.GenSym

    The maximum length of the generated lists

  10. genListMinLength :: ListSpec spec -> Int

    grisette Grisette.Internal.Core.Data.Class.GenSym

    The minimum length of the generated lists

Page 198 of many | Previous | Next