mono-traversable-keys

Type-classes for interacting with monomorphic containers with a key

https://github.com/recursion-ninja/mono-traversable-keys#readme

Version on this page:0.1.0
LTS Haskell 22.14:0.3.0
Stackage Nightly 2024-03-28:0.3.0
Latest on Hackage:0.3.0

See all snapshots mono-traversable-keys appears in

BSD-3-Clause licensed by Alex Washburn
Maintained by [email protected]
This version can be pinned in stack with:mono-traversable-keys-0.1.0@sha256:53dde3ba1e0ce9d6efc0861b1e8ab5d6b9ebef8de452307fb16de5231585da41,2564

Module documentation for 0.1.0

mono-traversable-keys

Provides type-classes for interacting with monomorphic containers in the following was:

  • zipping
  • adjusting an element at a key
  • safe indexing with a key
  • unsafe indexing with a key
  • mapping with a key
  • folding with a key
  • traversing with a key
  • zipping with a key

This package is the extension of two other popular libraries, mono-traversable and keys, designed to provided the functionality of the keys package to the monomorphic containers enhanced by the mono-traversable package.

Changes

Changelog for mono-traversable-keys

0.1.0 Unreleased changes

* Added `MonoAdjustable` type-class and initial instances
* Added `MonoIndexable` type-class and initial instances
* Added `MonoLookup` type-class and initial instances
* Added `MonoZip` type-class and initial instances
* Added `MonoZipWithKey` type-class and initial instances
* Added `MonoKeyed` type-class and initial instances
* Added `MonoFoldableWithKey` type-class and initial instances
* Added `MonoTraversableWithKey` type-class and initial instances