Skip to content

Commit 4c80a10

Browse files
Updating package descriptions.
1 parent d9b51a3 commit 4c80a10

File tree

2 files changed

+37
-8
lines changed

2 files changed

+37
-8
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
11
# mono-traversable-keys
2+
3+
Provides type-classes for interacting with monomorphic containers in the following was:
4+
5+
* zipping
6+
* adjusting an element at a key
7+
* safe indexing with a key
8+
* unsafe indexing with a key
9+
* mapping with a key
10+
* folding with a key
11+
* traversing with a key
12+
* zipping with a key
13+
14+
This package is the extension of two other popular libraries, [`mono-traversable`](http://hackage.haskell.org/package/mono-traversable) and [`keys`](http://hackage.haskell.org/package/keys), designed to provided the functionality of the `keys` package to the monomorphic containers enhanced by the `mono-trversable` package.

mono-traversable-keys.cabal

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
11
cabal-version: 1.12
2+
23
name: mono-traversable-keys
3-
version: 0.1.0.0
4-
description: Please see the README on GitHub at <https://github.com/githubuser/mono-traversable-keys#readme>
5-
homepage: https://github.com/recursion-ninja/mono-traversable-keys#readme
6-
bug-reports: https://github.com/recursion-ninja/mono-traversable-keys/issues
7-
author: Alex Washburn
8-
maintainer: [email protected]
9-
copyright: 2019 Alex Washburn
4+
version: 0.1.0
5+
synopsis: Type classes for interacting with monomorphic containers with a key
6+
category: Containers, Data, Data Structures
7+
build-type: Simple
108
license: BSD3
119
license-file: LICENSE
12-
build-type: Simple
10+
copyright: (c) Alex Washburn 2019
11+
author: Alex Washburn
12+
maintainer: [email protected]
13+
homepage: https://github.com/recursion-ninja/mono-traversable-keys#readme
14+
bug-reports: https://github.com/recursion-ninja/mono-traversable-keys/issues
15+
description:
16+
This is the extension of two other popular packages,
17+
<http://hackage.haskell.org/package/mono-traversable mono-traversable> and
18+
<http://hackage.haskell.org/package/keys keys>,
19+
designed to provided the functionality of the @keys@ package to the monomorphic
20+
containers enhanced by the @mono-trversable@ package.
21+
1322
extra-source-files:
1423
README.md
1524
CHANGELOG.md
@@ -18,6 +27,13 @@ source-repository head
1827
type: git
1928
location: https://github.com/recursion-ninja/mono-traversable-keys
2029

30+
tested-with:
31+
GHC == 8.6.2
32+
GHC == 8.4.4
33+
GHC == 8.2.2
34+
GHC == 8.0.2
35+
GHC == 7.10.3
36+
2137
library
2238

2339
build-depends:

0 commit comments

Comments
 (0)