The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
68 views

How can I get GHC to generate instances of Data.Typeable for GADTs with Typeable in the context?

Suppose I have the following code: {-# LANGUAGE GADTs, DeriveDataTypeable, StandaloneDeriving #-} import Data.Typeable class Eq t => OnlyEq t class (Eq t, Typeable t) => BothEqAndTypeable t ...
1
vote
1answer
60 views

inherit methods declared in .m file

I now know there is no protected method in objective-c and here is my problem: I have two viewControllers with many functions and properties that are shared, my vision was to have a ...
6
votes
1answer
116 views

Is there a way of deriving Binary instances for Vinyl record types using Derive and Template Haskell or otherwise

I have been trying out the Vinyl package, which uses type level kinds to create record structures with field level polymorphism and automatically provided lenses. Both of these features would be very ...
2
votes
2answers
208 views

haskell enum - what to do in case value constructors require value instead of nullary? Requirement scenario is given

LYAH says at Derived Instances that "all the value constructors are nullary (take no parameters, i.e. fields), we can make it part of the Enum typeclass." data Day = Monday | Tuesday | Wednesday ...
4
votes
1answer
173 views

invisible / hidden field in the constructor

I am ploughing through Learn You a Haskell for Great Good, and I have reached up to section 8.4, "Derived Instances". In this section, there's the following data type declaration: data Person = ...
2
votes
2answers
84 views

Handling Specified Member Classes In C#

In building a class structure, I would like to have derived classes potentially posses derived member classes. For example: class GamePiece { } class Checker : GamePiece {} class ChessMan : ...
15
votes
2answers
3k 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 ...
7
votes
4answers
772 views

Deriving arbitrary functions in Haskell

When working with derived instances in Haskell, is it possible to derive functions for arbitrary types, or are we restricted to particular functions?