generic-data-asserts: Structural assertions on generic data representations.

[ data, deprecated, generics, library, mit, serialization ] [ Propose Tags ]
Deprecated in favor of generic-type-asserts

Please see README.md.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.1, 0.2.0
Change log CHANGELOG.md
Dependencies base (>=4.14 && <5) [details]
License MIT
Author Ben Orchard
Maintainer Ben Orchard <thefirstmuffinman@gmail.com>
Category Data, Generics
Home page https://github.com/raehik/generic-rep-asserts#readme
Bug tracker https://github.com/raehik/generic-rep-asserts/issues
Source repo head: git clone https://github.com/raehik/generic-rep-asserts
Uploaded by raehik at 2024-04-05T06:18:53Z
Distributions
Reverse Dependencies 1 direct, 1 indirect [details]
Downloads 31 total (31 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for generic-data-asserts-0.2.0

[back to package description]

generic-data-asserts

Structural assertions on the generic data representations (GHC.Generic.Rep a).

Sometimes, we want to write generics that only work on certain data types with a certain shape e.g. non-sum types (single constructor). Achieving this is fairly straightforward if we add a TypeError constraint on the relevant generic representation unwrapping instance (here, the (:+:) constructor sum type).

This library effectively pulls those checks out of generic code and runs them by separately. This way, we can simplify our generics, and make them more flexible (e.g. a user may choose whether to permit void types at compile time or not).

This began as a minor feature in my generic-data-functions library.

License

Provided under the MIT license. See LICENSE for license text.