5eef3902cbd689b6d898f49fd57feba1b0a416b0
[ghc-hetmet.git] / ghc / compiler / basicTypes / OrdList.hi
1 {-# GHC_PRAGMA INTERFACE VERSION 5 #-}
2 interface OrdList where
3 data OrdList a 
4 flattenOrdList :: OrdList a -> [a]
5 mkEmptyList :: OrdList a
6 mkParList :: OrdList a -> OrdList a -> OrdList a
7 mkSeqList :: OrdList a -> OrdList a -> OrdList a
8 mkUnitList :: a -> OrdList a
9