The deriving tag has no wiki summary.
12
votes
2answers
778 views
How does deriving work in Haskell?
ADTs in Haskell can automatically become instance of some typeclasses (like Show, Eq) by deriving from them.
data Maybe a = Nothing | Just a
deriving (Eq, Ord)
My question is, how does this ...
4
votes
1answer
85 views
Haskell — any way to turn off rebindable syntax for the case of `deriving` instances?
There's an annoying "feature" that deriving instances are also affected by the RebindableSyntax extension. Example of what I want to write:
{-# LANGUAGE RebindableSyntax #-}
import qualified Prelude
...
4
votes
1answer
80 views
Any way to customize one or two methods of GeneralizedNewtypeDeriving instances?
Haskell's GeneralizedNewtypeDeriving mechanism is great; for those who haven't seen it, writing something like
newtype SkewOptT 𝔪 α = SkewOptT (StateT Bool 𝔪 α)
deriving (Applicative, Functor, ...
3
votes
2answers
145 views
Eq instance has some strange comparisons
I have made an image processing module that defines a Pixel type as a Color and Location. Pixel, Color, and Location derive Eq, as I may want to compare pixels between multiple images.
Eq suits my ...
2
votes
2answers
74 views
Is there a Template Haskell / deriving mechanism for Data.Binary (or friends?)
The Data.Binary documentation shows writing an instance by hand. Is there a way around this? I saw here there is another library, SerTH, which has a (Template Haskell based) deriving mechanism, but ...
1
vote
0answers
57 views
How to create a new Data.Derive instance generator?
Does anyone know of a step-by-step tutorial of how to create a Data.Derive instance generator? There seems to be an amount of documentation for how to use an existing deriving instance generators.
...
1
vote
1answer
108 views
Deriving a type and its dependencies
I've been playing with newtype wrappers for my indexes to avoid bugs, and I have some code like this:
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
newtype PersonIdx = PersonIdx Int
deriving (Enum, ...