I've been working with some scrap-your-boilerplate functions for a while. Nevertheless, I tried to compile a module that imports Data.Data
and Data.Typeable
, though some functions like everywhere
and mkT
could not be found by the compiler. Where are these functions in the new versions of GHC?
Asked
Active
Viewed 67 times
1

Cactus
- 27,075
- 9
- 69
- 149

Rodrigo Bonifacio
- 262
- 1
- 8
-
for the record, what version of GHC are you using? – rampion Nov 27 '15 at 17:57
-
The Glorious Glasgow Haskell Compilation System, version 7.8.3 – Rodrigo Bonifacio Nov 27 '15 at 17:57
1 Answers
3
mkT
and everywhere
are part of the syb
package. I don't know that they've ever been part of base.

rampion
- 87,131
- 49
- 199
- 315