13 lines
235 B
Haskell
Raw Permalink Normal View History

2005-04-24 08:51:33 +00:00
{-# OPTIONS -fglasgow-exts #-}
-- a really nasty type:
module API where
import Data.Generics
data Interface = Interface { field :: Typeable r => (r -> Bool) -> GenericQ [r] }
rsrc :: Interface
rsrc = Interface { field = listify }