Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. class BiPolyMap (map :: Type -> Type -> Type)

    mono-traversable Data.Containers

    A Map type polymorphic in both its key and value.

  2. class (MonoTraversable map, SetContainer map) => IsMap map

    mono-traversable Data.Containers

    Polymorphic typeclass for interacting with different map types

  3. class PolyMap (map :: Type -> Type)

    mono-traversable Data.Containers

    A guaranteed-polymorphic Map, which allows for more polymorphic versions of functions.

  4. adjustMap :: IsMap map => (MapValue map -> MapValue map) -> ContainerKey map -> map -> map

    mono-traversable Data.Containers

    Apply a function to the value of a given key. Returns the input map when the key-value pair does not exist.

  5. alterMap :: IsMap map => (Maybe (MapValue map) -> Maybe (MapValue map)) -> ContainerKey map -> map -> map

    mono-traversable Data.Containers

    Update/Delete the value of a given key. Applies a function to previous value of a given key, if it results in Nothing delete the key-value pair from the map, otherwise replace the previous value with the new value.

  6. deleteMap :: IsMap map => ContainerKey map -> map -> map

    mono-traversable Data.Containers

    Delete a key-value pair of a map using a specified key.

  7. differenceMap :: PolyMap map => map value1 -> map value2 -> map value1

    mono-traversable Data.Containers

    Get the difference between two maps, using the left map's values.

  8. filterMap :: IsMap map => (MapValue map -> Bool) -> map -> map

    mono-traversable Data.Containers

    Filter values in a map.

  9. insertMap :: IsMap map => ContainerKey map -> MapValue map -> map -> map

    mono-traversable Data.Containers

    Insert a key-value pair into a map.

  10. intersectionMap :: PolyMap map => map value1 -> map value2 -> map value1

    mono-traversable Data.Containers

    Get the intersection of two maps, using the left map's values.

Page 486 of many | Previous | Next