summaryrefslogtreecommitdiff
path: root/src/GF/Data/OrdSet.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Data/OrdSet.hs')
-rw-r--r--src/GF/Data/OrdSet.hs28
1 files changed, 10 insertions, 18 deletions
diff --git a/src/GF/Data/OrdSet.hs b/src/GF/Data/OrdSet.hs
index 79393a892..f2a1ec115 100644
--- a/src/GF/Data/OrdSet.hs
+++ b/src/GF/Data/OrdSet.hs
@@ -1,30 +1,22 @@
----------------------------------------------------------------------
-- |
--- Module : (Module)
--- Maintainer : (Maintainer)
--- Stability : (stable)
--- Portability : (portable)
+-- Module : OrdSet
+-- Maintainer : Peter Ljunglöf
+-- Stability : Obsolete
+-- Portability : Haskell 98
--
-- > CVS $Date $
-- > CVS $Author $
-- > CVS $Revision $
--
--- (Description of the module)
+-- The class of ordered sets, as described in
+-- "Pure Functional Parsing", section 2.2.1,
+-- and an example implementation
+-- derived from appendix A.1
+--
+-- /OBSOLETE/! this is only used in cf\/ChartParser.hs
-----------------------------------------------------------------------------
-{- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Filename: OrdSet.hs
- Author: Peter Ljunglöf
- Time-stamp: <2004-05-07 14:16:12 peb>
-
- Description: The class of ordered sets, as described in
- "Pure Functional Parsing", section 2.2.1,
- and an example implementation
- derived from appendix A.1
-
- OBSOLETE! this is only used in cf/ChartParser.hs
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -}
-
module OrdSet (OrdSet(..), Set) where
import List (intersperse)