Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
782 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
552 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?
2
votes
2answers
60 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 : ...