From 6381f3a9987f44c4c827ab2c9033519f191a2cce Mon Sep 17 00:00:00 2001 From: peb Date: Fri, 4 Feb 2005 09:10:28 +0000 Subject: "Committed_by_peb" --- src/GF/Data/ErrM.hs | 14 ++++++++++++++ src/GF/Data/Glue.hs | 14 ++++++++++++++ src/GF/Data/Map.hs | 14 ++++++++++++++ src/GF/Data/Operations.hs | 14 ++++++++++++++ src/GF/Data/OrdMap2.hs | 14 ++++++++++++++ src/GF/Data/OrdSet.hs | 14 ++++++++++++++ src/GF/Data/Parsers.hs | 14 ++++++++++++++ src/GF/Data/RedBlack.hs | 14 ++++++++++++++ src/GF/Data/SharedString.hs | 14 ++++++++++++++ src/GF/Data/Str.hs | 14 ++++++++++++++ src/GF/Data/Trie.hs | 14 ++++++++++++++ src/GF/Data/Trie2.hs | 14 ++++++++++++++ src/GF/Data/Zipper.hs | 14 ++++++++++++++ 13 files changed, 182 insertions(+) (limited to 'src/GF/Data') diff --git a/src/GF/Data/ErrM.hs b/src/GF/Data/ErrM.hs index eb2078718..fe9796d7f 100644 --- a/src/GF/Data/ErrM.hs +++ b/src/GF/Data/ErrM.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + module ErrM ( module Operations ) where diff --git a/src/GF/Data/Glue.hs b/src/GF/Data/Glue.hs index a533a6c2f..cfbe0e746 100644 --- a/src/GF/Data/Glue.hs +++ b/src/GF/Data/Glue.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + module Glue where import Trie2 diff --git a/src/GF/Data/Map.hs b/src/GF/Data/Map.hs index fdaad857c..60ba69052 100644 --- a/src/GF/Data/Map.hs +++ b/src/GF/Data/Map.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + {- ************************************************************** * Filename : Map.hs * diff --git a/src/GF/Data/Operations.hs b/src/GF/Data/Operations.hs index 003f1746f..214509142 100644 --- a/src/GF/Data/Operations.hs +++ b/src/GF/Data/Operations.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + module Operations where import Char (isSpace, toUpper, isSpace, isDigit) diff --git a/src/GF/Data/OrdMap2.hs b/src/GF/Data/OrdMap2.hs index b4f9245fb..213f40b52 100644 --- a/src/GF/Data/OrdMap2.hs +++ b/src/GF/Data/OrdMap2.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + {- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Filename: OrdMap2.hs Author: Peter Ljunglöf diff --git a/src/GF/Data/OrdSet.hs b/src/GF/Data/OrdSet.hs index 8761b2176..79393a892 100644 --- a/src/GF/Data/OrdSet.hs +++ b/src/GF/Data/OrdSet.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + {- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Filename: OrdSet.hs Author: Peter Ljunglöf diff --git a/src/GF/Data/Parsers.hs b/src/GF/Data/Parsers.hs index 165d0f4e7..234ddff90 100644 --- a/src/GF/Data/Parsers.hs +++ b/src/GF/Data/Parsers.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + module Parsers where import Operations diff --git a/src/GF/Data/RedBlack.hs b/src/GF/Data/RedBlack.hs index 4ee1f92a6..21e2f5586 100644 --- a/src/GF/Data/RedBlack.hs +++ b/src/GF/Data/RedBlack.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + {- ************************************************************** * Filename : RedBlack.hs * diff --git a/src/GF/Data/SharedString.hs b/src/GF/Data/SharedString.hs index f03f6f469..55a676015 100644 --- a/src/GF/Data/SharedString.hs +++ b/src/GF/Data/SharedString.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + module SharedString (shareString) where import Data.HashTable as H diff --git a/src/GF/Data/Str.hs b/src/GF/Data/Str.hs index 6433e5355..138c39f26 100644 --- a/src/GF/Data/Str.hs +++ b/src/GF/Data/Str.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + module Str ( Str (..), Tok (..), --- constructors needed in PrGrammar str2strings, str2allStrings, str, sstr, sstrV, diff --git a/src/GF/Data/Trie.hs b/src/GF/Data/Trie.hs index 724df0761..7cfe51fa2 100644 --- a/src/GF/Data/Trie.hs +++ b/src/GF/Data/Trie.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + {- ************************************************************** * Filename : Trie.hs * diff --git a/src/GF/Data/Trie2.hs b/src/GF/Data/Trie2.hs index 2ccc05a9f..d4f6a59b4 100644 --- a/src/GF/Data/Trie2.hs +++ b/src/GF/Data/Trie2.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + {- ************************************************************** * Author : Markus Forsberg * diff --git a/src/GF/Data/Zipper.hs b/src/GF/Data/Zipper.hs index e63743b06..31174b71e 100644 --- a/src/GF/Data/Zipper.hs +++ b/src/GF/Data/Zipper.hs @@ -1,3 +1,17 @@ +---------------------------------------------------------------------- +-- | +-- Module : (Module) +-- Maintainer : (Maintainer) +-- Stability : (stable) +-- Portability : (portable) +-- +-- > CVS $Date $ +-- > CVS $Author $ +-- > CVS $Revision $ +-- +-- (Description of the module) +----------------------------------------------------------------------------- + module Zipper where import Operations -- cgit v1.2.3