@hackage / derive-lifted-instances

Derive class instances though various kinds of lifting

Latest0.3

About

Metadata

  • Last updated , by SjoerdVisscher
  • License Apache-2.0
  • Categories Development, Generics
  • Maintained by: sjoerd@w3future.com

  • Lottery factor: 1

Links

Installation

Tested Compilers

  1. 9.12.2
  2. 9.10.3
  3. 9.8.4
  4. 9.6.7

Readme

derive-lifted-instances

Hackage Build Status

derive-lifted-instances generates type class instances using Template Haskell.

Below is an overview of what this library can do. If you could rewrite a class as one of the cases, and the listed constraints are satisfiable, then an instance can be derived. Note that when another instance of the class is required, this could also be a derived instance (i.e. deriving is composable), in case you don't want that instance to actually exist.

class C x where alg :: f x -> x
x iso y (Functor f, C y)
x=m (Foldable f, Monoid m)
x=t a (Traversable f, Applicative t, C a)
x=t a b (Traversable f, Biapplicative t, C a, C b)
x a record (Traversable f, All C flds)
class C x where coalg :: x -> f x
x iso y (Functor f, C y)
x=m (Pointed f)
x=t a (Applicative f, Traversable t, C a)
x=t a b (Applicative f, Bitraversable t, C a, C b)
x a record (Applicative f, All C flds)
class C x where dialg :: f x -> g x
x iso y (Functor f, Functor g, C y)
x=m (Foldable f, Pointed g, Monoid m)
x=t a (Traversable f, Applicative g, Applicative t, Traversable t, C a)
x=t a b (Traversable f, Applicative g, Biapplicative t, Bitraversable t, C a, C b)
x a record (Traversable f, Applicative g, All C flds)