I found answers explaining difference between newtype and data in Haskell. But if I have the following type synonym:
type Point = (Int,Int)
Would that be more efficient rather to use:
data Point = Pt (Int,Int) ?
|
Using Note that both are more inefficient than:
as you can see from this earlier question on data representations. |
|||||||||||||
|
|
Yes. The Pt construction adds one word of overhead (in GHC) and the field (i.e. the pair) is stored as a pointer to a pair, adding one additional word, for a total of two words overhead (and an extra indirection to get to the values). I recommend that you either use the type synonym or, better yet, define
This requires 4 words less than
and uses one less level of indirections (pointers). |
|||
|
|
newtypeanddataNOT betweentypeanddata– vis Jun 8 '11 at 11:08data Point = Pt (Int,Int)is inefficient. You are better to usedata Point = Pt Int Int. In some cases you might opt for strict Ints as well. – stephen tetley Jun 8 '11 at 11:26