[project @ 1996-01-11 14:06:51 by partain]
[ghc-hetmet.git] / ghc / compiler / utils / BitSet.hi
1 {-# GHC_PRAGMA INTERFACE VERSION 5 #-}
2 interface BitSet where
3 data BitSet 
4 emptyBS :: BitSet
5 listBS :: BitSet -> [Int]
6 minusBS :: BitSet -> BitSet -> BitSet
7 mkBS :: [Int] -> BitSet
8 singletonBS :: Int -> BitSet
9 unionBS :: BitSet -> BitSet -> BitSet
10