eliminators

Dependently typed elimination functions using singletons

https://github.com/RyanGlScott/eliminators

Version on this page:0.5.1
LTS Haskell 22.14:0.9.3@rev:2
Stackage Nightly 2024-03-28:0.9.4@rev:1
Latest on Hackage:0.9.4@rev:1

See all snapshots eliminators appears in

BSD-3-Clause licensed by Ryan Scott
Maintained by Ryan Scott
This version can be pinned in stack with:eliminators-0.5.1@sha256:3c1300e2e7e1b2def98407b984c3885d5c3b8309e9cf7ec6648b93610853becb,2576

Module documentation for 0.5.1

eliminators

Hackage Hackage Dependencies Haskell Programming Language BSD3 License Build

This library provides eliminators for inductive data types, leveraging the power of the singletons library to allow dependently typed elimination.

Changes

0.5.1 [2019.04.26]

  • Support th-abstraction-0.3.0.0 or later.

0.5 [2018.09.18]

  • Require singletons-2.5 and GHC 8.6.

0.4.1 [2018.02.13]

  • Add elimVoid to Data.Eliminator.

0.4 [2018.01.09]

  • Require singletons-2.4 and GHC 8.4.

0.3 [2017-11-07]

  • Migrate the old elimNat from Data.Eliminator (which worked over the Nat from GHC.TypeNats) to Data.Eliminator.TypeNats. There elimNat that now lives in Data.Eliminator is for an unrelated Nat data type from the singleton-nats package (which is a proper, inductively defined, Peano natural number type).

0.2 [2017-07-22]

  • Introduce the Data.Eliminator.TH module, which provides functionality for generating eliminator functions using Template Haskell. Currently, only simple algebraic data types that do not use polymorphic recursion are supported.
  • All eliminators now use predicates with (~>).

0.1 [2017-07-02]

  • Initial release.