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. pathToPMap :: Path a -> PMap Multi a

    greskell Data.Greskell.Graph

    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.

  2. module Data.Greskell.Graph.PropertyMap

    PropertyMap was used in greskell prior than 1.0.0.0, but is now deprecated. Use Data.Greskell.PMap instead.

  3. class PropertyMap (m :: Type -> Type -> Type -> Type)

    greskell Data.Greskell.Graph.PropertyMap

    Deprecated: PropertyMap and its instances are deprecated. Use PMap instead.

  4. data PropertyMapList (p :: Type -> Type) v

    greskell Data.Greskell.Graph.PropertyMap

    A PropertyMap that can keep more than one values per key. lookupOne returns the first property associated with the given key. putProperty prepends the given property to the property list. <> returns the union of the two given property maps. If the two property maps share some same keys, those property lists are concatenated.

  5. data PropertyMapSingle (p :: Type -> Type) v

    greskell Data.Greskell.Graph.PropertyMap

    A PropertyMap that has a single value per key. putProperty replaces the old property by the given property. <> returns the union of the two given property maps. If the two property maps share some same keys, the value from the left map wins.

  6. module Data.Greskell.PMap

    This module defines PMap, a map with Text keys and cardinality options.

  7. data PMap (c :: Type -> Type) v

    greskell Data.Greskell.PMap

    A property map, which has text keys and v values. c specifies the cardinality of each item, and should be an instance of NonEmptyLike. You can look up values from PMap using key types of PMapKey class.

  8. class PMapKey k

    greskell Data.Greskell.PMap

    A typed key for PMap.

  9. data PMapLookupException

    greskell Data.Greskell.PMap

    An Exception raised when looking up values from PMap.

  10. PMapNoSuchKey :: Text -> PMapLookupException

    greskell Data.Greskell.PMap

    The PMap doesn't have the given key.

Page 1170 of many | Previous | Next