2005-09-03 04:45:14 +00:00

13 lines
235 B
Haskell

{-# 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 }