Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
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.
-
greskell Data.Greskell.Graph list Cardinality.
data
PropertyMapList (p :: Type -> Type) vgreskell 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.
lookupList :: PropertyMap m => Text -> m p v -> [p v]greskell Data.Greskell.Graph.PropertyMap Look up all properties associated with the given key.
-
greskell Data.Greskell.Graph.PropertyMap Lookup a list of property values from a PropertyMap by key.
-
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.
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.
-
greskell Data.Greskell.PMap Look up the values and parse them into 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.
pMapFromList :: forall (c :: Type -> Type) v . NonEmptyLike c => [(Text, v)] -> PMap c vgreskell Data.Greskell.PMap Make a PMap from list of entries.