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. toList :: NodeManager k -> [(k, Node)]

    graph-core Data.Core.Graph.NodeManager

    No documentation available.

  2. cList :: Greskell Cardinality

    greskell Data.Greskell

    list Cardinality.

  3. parseUnwrapList :: (IsList a, i ~ Item a, FromGraphSON i) => GValue -> Parser a

    greskell Data.Greskell

    Extract GArray from the given GValue, parse the items in the array, and gather them by fromList. Useful to implement FromGraphSON instances for IsList types.

  4. toList :: forall (c :: Type -> Type -> Type) k v . (IsList (c k v), Item (c k v) ~ (k, v)) => GMap c k v -> [GMapEntry k v]

    greskell Data.Greskell

    Deconstruct GMap into a list of GMapEntrys.

  5. 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.Extra

    Look up the values and parse them into a.

  6. 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.Extra

    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.

  7. cList :: Greskell Cardinality

    greskell Data.Greskell.Graph

    list Cardinality.

  8. 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.

  9. lookupList :: PropertyMap m => Text -> m p v -> [p v]

    greskell Data.Greskell.Graph.PropertyMap

    Look up all properties associated with the given key.

  10. lookupListValues :: forall m (p :: Type -> Type) v . (PropertyMap m, Property p) => Text -> m p v -> [v]

    greskell Data.Greskell.Graph.PropertyMap

    Lookup a list of property values from a PropertyMap by key.

Page 197 of many | Previous | Next