From: simonmar Date: Wed, 24 Apr 2002 16:31:47 +0000 (+0000) Subject: [project @ 2002-04-24 16:31:37 by simonmar] X-Git-Tag: nhc98-1-18-release~1052 X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=9fa9bc17072a58c0bae2cce4764d38677e96ac29 [project @ 2002-04-24 16:31:37 by simonmar] Add the single character '|' to the header comment of each module so that Haddock will parse it as the module documentation. --- diff --git a/Control/Concurrent.hs b/Control/Concurrent.hs index 8e82663..6b3ec94 100644 --- a/Control/Concurrent.hs +++ b/Control/Concurrent.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Concurrent -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Concurrent.hs,v 1.5 2002/04/18 23:32:56 sof Exp $ +-- $Id: Concurrent.hs,v 1.6 2002/04/24 16:31:37 simonmar Exp $ -- -- A common interface to a collection of useful concurrency -- abstractions. diff --git a/Control/Concurrent/CVar.hs b/Control/Concurrent/CVar.hs index 8e16596..a3b41de 100644 --- a/Control/Concurrent/CVar.hs +++ b/Control/Concurrent/CVar.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Concurrent.CVar -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: CVar.hs,v 1.1 2001/06/28 14:15:01 simonmar Exp $ +-- $Id: CVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $ -- -- Channel variables are one-element channels. -- diff --git a/Control/Concurrent/Chan.hs b/Control/Concurrent/Chan.hs index 29423e1..0992137 100644 --- a/Control/Concurrent/Chan.hs +++ b/Control/Concurrent/Chan.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Concurrent.Chan -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Chan.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Chan.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $ -- -- Standard, unbounded channel abstraction. -- diff --git a/Control/Concurrent/MVar.hs b/Control/Concurrent/MVar.hs index 7832c2e..472063a 100644 --- a/Control/Concurrent/MVar.hs +++ b/Control/Concurrent/MVar.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Concurrent.MVar -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: MVar.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: MVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $ -- -- MVars: Synchronising variables -- diff --git a/Control/Concurrent/QSem.hs b/Control/Concurrent/QSem.hs index 2cc9f55..88a4462 100644 --- a/Control/Concurrent/QSem.hs +++ b/Control/Concurrent/QSem.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Concurrent.QSem -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: QSem.hs,v 1.2 2001/07/04 11:30:52 simonmar Exp $ +-- $Id: QSem.hs,v 1.3 2002/04/24 16:31:37 simonmar Exp $ -- -- General semaphores -- diff --git a/Control/Concurrent/QSemN.hs b/Control/Concurrent/QSemN.hs index da5aa44..c7a7fbc 100644 --- a/Control/Concurrent/QSemN.hs +++ b/Control/Concurrent/QSemN.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Concurrent.QSemN -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: QSemN.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: QSemN.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $ -- -- Quantity semaphores -- diff --git a/Control/Concurrent/SampleVar.hs b/Control/Concurrent/SampleVar.hs index e3d3341..8cd1915 100644 --- a/Control/Concurrent/SampleVar.hs +++ b/Control/Concurrent/SampleVar.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Concurrent.SampleVar -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: SampleVar.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: SampleVar.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $ -- -- Sample variables -- diff --git a/Control/Exception.hs b/Control/Exception.hs index 0248ff2..76b4d63 100644 --- a/Control/Exception.hs +++ b/Control/Exception.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Exception -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Exception.hs,v 1.6 2002/02/05 17:32:25 simonmar Exp $ +-- $Id: Exception.hs,v 1.7 2002/04/24 16:31:37 simonmar Exp $ -- -- The External API for exceptions. The functions provided in this -- module allow catching of exceptions in the IO monad. diff --git a/Control/Monad.hs b/Control/Monad.hs index d2e9908..7d6c978 100644 --- a/Control/Monad.hs +++ b/Control/Monad.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Monad.hs,v 1.1 2001/06/28 14:15:01 simonmar Exp $ +-- $Id: Monad.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $ -- ----------------------------------------------------------------------------- diff --git a/Control/Monad/Cont.hs b/Control/Monad/Cont.hs index 541f6a6..f9855b3 100644 --- a/Control/Monad/Cont.hs +++ b/Control/Monad/Cont.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.Cont -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Cont.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Cont.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- Continuation monads. -- diff --git a/Control/Monad/Error.hs b/Control/Monad/Error.hs index 979ae35..e57a5b3 100644 --- a/Control/Monad/Error.hs +++ b/Control/Monad/Error.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.Error -- Copyright : (c) Michael Weber , 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable (reqruires multi-param type classes) -- --- $Id: Error.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Error.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- The Error monad. -- diff --git a/Control/Monad/Fix.hs b/Control/Monad/Fix.hs index 3a0be32..4836db7 100644 --- a/Control/Monad/Fix.hs +++ b/Control/Monad/Fix.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.Fix -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Fix.hs,v 1.4 2002/03/22 10:20:24 simonmar Exp $ +-- $Id: Fix.hs,v 1.5 2002/04/24 16:31:38 simonmar Exp $ -- -- The Fix monad. -- diff --git a/Control/Monad/Identity.hs b/Control/Monad/Identity.hs index aee6f03..21056d3 100644 --- a/Control/Monad/Identity.hs +++ b/Control/Monad/Identity.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.Identity -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Identity.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Identity.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- The Identity monad. -- diff --git a/Control/Monad/List.hs b/Control/Monad/List.hs index e6c7daa..3f7ee70 100644 --- a/Control/Monad/List.hs +++ b/Control/Monad/List.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.List -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : non-portable ( requires mulit-parameter type classes ) -- --- $Id: List.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: List.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- The List monad. -- diff --git a/Control/Monad/Monoid.hs b/Control/Monad/Monoid.hs index e81b2be..98a538a 100644 --- a/Control/Monad/Monoid.hs +++ b/Control/Monad/Monoid.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.Monoid -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : non-portable ( requires mulit-parameter type classes ) -- --- $Id: Monoid.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Monoid.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- Declaration of the Monoid class,and instances for list and functions -- diff --git a/Control/Monad/RWS.hs b/Control/Monad/RWS.hs index 26d624d..e050eae 100644 --- a/Control/Monad/RWS.hs +++ b/Control/Monad/RWS.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.RWS -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -10,7 +10,7 @@ -- Portability : non-portable ( requires mulit-parameter type classes, -- requires functional dependencies ) -- --- $Id: RWS.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: RWS.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- Declaration of the MonadRWS class. -- diff --git a/Control/Monad/Reader.hs b/Control/Monad/Reader.hs index d03c446..223c296 100644 --- a/Control/Monad/Reader.hs +++ b/Control/Monad/Reader.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.Reader -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -10,7 +10,7 @@ -- Portability : non-portable ( requires mulit-parameter type classes, -- requires functional dependencies ) -- --- $Id: Reader.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Reader.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- Declaration of the Monoid class,and instances for list and functions -- diff --git a/Control/Monad/ST.hs b/Control/Monad/ST.hs index dd7829c..6d19b9c 100644 --- a/Control/Monad/ST.hs +++ b/Control/Monad/ST.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.ST -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable (requires universal quantification for runST) -- --- $Id: ST.hs,v 1.5 2001/12/21 15:07:21 simonmar Exp $ +-- $Id: ST.hs,v 1.6 2002/04/24 16:31:38 simonmar Exp $ -- -- The State Transformer Monad, ST -- diff --git a/Control/Monad/ST/Lazy.hs b/Control/Monad/ST/Lazy.hs index bb56e28..8b2f41b 100644 --- a/Control/Monad/ST/Lazy.hs +++ b/Control/Monad/ST/Lazy.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.ST.Lazy -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : non-portable (requires universal quantification for runST) -- --- $Id: Lazy.hs,v 1.4 2002/01/02 14:40:09 simonmar Exp $ +-- $Id: Lazy.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $ -- -- This module presents an identical interface to Control.Monad.ST, -- but the underlying implementation of the state thread is lazy. diff --git a/Control/Monad/ST/Strict.hs b/Control/Monad/ST/Strict.hs index d746f6d..72e5681 100644 --- a/Control/Monad/ST/Strict.hs +++ b/Control/Monad/ST/Strict.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.ST.Strict -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : non-portable (requires universal quantification for runST) -- --- $Id: Strict.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $ +-- $Id: Strict.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $ -- -- The strict ST monad (identical to Control.Monad.ST) -- diff --git a/Control/Monad/State.hs b/Control/Monad/State.hs index b28d027..fef3ee8 100644 --- a/Control/Monad/State.hs +++ b/Control/Monad/State.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.State -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -10,7 +10,7 @@ -- Portability : non-portable ( requires mulit-parameter type classes, -- requires functional dependencies ) -- --- $Id: State.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: State.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- State monads. -- diff --git a/Control/Monad/Trans.hs b/Control/Monad/Trans.hs index 3766021..3e75ea1 100644 --- a/Control/Monad/Trans.hs +++ b/Control/Monad/Trans.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.Trans -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Trans.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Trans.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- The MonadTrans class. -- diff --git a/Control/Monad/Writer.hs b/Control/Monad/Writer.hs index 96df130..898069c 100644 --- a/Control/Monad/Writer.hs +++ b/Control/Monad/Writer.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.Writer -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 @@ -10,7 +10,7 @@ -- Portability : non-portable ( requires mulit-parameter type classes, -- requires functional dependencies ) -- --- $Id: Writer.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Writer.hs,v 1.2 2002/04/24 16:31:38 simonmar Exp $ -- -- The MonadWriter class. -- diff --git a/Control/Parallel.hs b/Control/Parallel.hs index 1d6a126..e9b021b 100644 --- a/Control/Parallel.hs +++ b/Control/Parallel.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Parallel -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Parallel.hs,v 1.1 2001/06/28 14:15:01 simonmar Exp $ +-- $Id: Parallel.hs,v 1.2 2002/04/24 16:31:37 simonmar Exp $ -- -- Parallel Constructs -- diff --git a/Control/Parallel/Strategies.hs b/Control/Parallel/Strategies.hs index cad9aa3..d011eca 100644 --- a/Control/Parallel/Strategies.hs +++ b/Control/Parallel/Strategies.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Parallel.Strategies -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $ -- -- Parallel strategy combinators -- @@ -16,7 +16,7 @@ {- Time-stamp: -$Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $ This module defines parallel strategy combinators @@ -25,8 +25,8 @@ This module defines parallel strategy combinators Based on Version VII (1/5/96) `Strategies96' of type a -> () Author: $Author: simonmar $ -Date: $Date: 2001/06/28 14:15:02 $ -Revision: $Revision: 1.1 $ +Date: $Date: 2002/04/24 16:31:39 $ +Revision: $Revision: 1.2 $ Source: $Source: /srv/cvs/cvs.haskell.org/fptools/libraries/base/Control/Parallel/Strategies.hs,v $ State: $State: Exp $ @@ -50,6 +50,10 @@ The history of the Strategies module: Changelog: $Log: Strategies.hs,v $ +Revision 1.2 2002/04/24 16:31:39 simonmar +Add the single character '|' to the header comment of each module so +that Haddock will parse it as the module documentation. + Revision 1.1 2001/06/28 14:15:02 simonmar First cut of the Haskell Core Libraries ======================================= @@ -277,8 +281,8 @@ declaration of @par@ and @seq@ despite renaming the imported versions. > infixl 6 $||, $| -- strategic function application (seq and par) > infixl 9 .|, .||, -|, -|| -- strategic (inverse) function composition -> strategy_version = "$Revision: 1.1 $" -> strategy_id = "$Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $" +> strategy_version = "$Revision: 1.2 $" +> strategy_id = "$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $" ------------------------------------------------------------------------------ Strategy Type, Application and Semantics diff --git a/Data/Array.hs b/Data/Array.hs index c13cc91..aadfdfb 100644 --- a/Data/Array.hs +++ b/Data/Array.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Array.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Array.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $ -- -- Basic non-strict arrays. -- diff --git a/Data/Array/Base.hs b/Data/Array/Base.hs index 4c23b39..7ec369c 100644 --- a/Data/Array/Base.hs +++ b/Data/Array/Base.hs @@ -1,6 +1,6 @@ {-# OPTIONS -monly-3-regs #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array.Base -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Base.hs,v 1.6 2002/03/26 17:09:52 simonmar Exp $ +-- $Id: Base.hs,v 1.7 2002/04/24 16:31:43 simonmar Exp $ -- -- Basis for IArray and MArray. Not intended for external consumption; -- use IArray or MArray instead. diff --git a/Data/Array/Diff.hs b/Data/Array/Diff.hs index a0ff54e..5bcaba5 100644 --- a/Data/Array/Diff.hs +++ b/Data/Array/Diff.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array.Diff -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Diff.hs,v 1.2 2002/01/02 14:40:10 simonmar Exp $ +-- $Id: Diff.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $ -- -- Functional arrays with constant-time update. -- diff --git a/Data/Array/IArray.hs b/Data/Array/IArray.hs index b97daee..dff19d5 100644 --- a/Data/Array/IArray.hs +++ b/Data/Array/IArray.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array.IArray -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: IArray.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: IArray.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $ -- -- Overloaded immutable array class. -- diff --git a/Data/Array/IO.hs b/Data/Array/IO.hs index bd4ad93..e7fd228 100644 --- a/Data/Array/IO.hs +++ b/Data/Array/IO.hs @@ -1,6 +1,6 @@ {-# OPTIONS -#include "HsBase.h" #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array.IO -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: IO.hs,v 1.6 2002/03/26 17:11:15 simonmar Exp $ +-- $Id: IO.hs,v 1.7 2002/04/24 16:31:43 simonmar Exp $ -- -- Mutable boxed/unboxed arrays in the IO monad. -- diff --git a/Data/Array/MArray.hs b/Data/Array/MArray.hs index c341dab..e77f4eb 100644 --- a/Data/Array/MArray.hs +++ b/Data/Array/MArray.hs @@ -1,6 +1,6 @@ {-# OPTIONS -monly-3-regs #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array.MArray -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: MArray.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: MArray.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $ -- -- Class of mutable arrays, and operations on them. -- diff --git a/Data/Array/ST.hs b/Data/Array/ST.hs index 143f792..dd6b908 100644 --- a/Data/Array/ST.hs +++ b/Data/Array/ST.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array.ST -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: ST.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: ST.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $ -- -- Mutable boxed/unboxed arrays in the ST monad. -- diff --git a/Data/Array/Storable.hs b/Data/Array/Storable.hs index 76d2dae..b59301e 100644 --- a/Data/Array/Storable.hs +++ b/Data/Array/Storable.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array.Storable -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Storable.hs,v 1.2 2001/07/04 10:51:09 simonmar Exp $ +-- $Id: Storable.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $ -- -- A storable array is an IO-mutable array which stores its -- contents in a contiguous memory block living in the C diff --git a/Data/Array/Unboxed.hs b/Data/Array/Unboxed.hs index b4a0ecf..508df4d 100644 --- a/Data/Array/Unboxed.hs +++ b/Data/Array/Unboxed.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Array.Unboxed -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Unboxed.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Unboxed.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $ -- -- Unboxed immutable array type. -- diff --git a/Data/Bits.hs b/Data/Bits.hs index c68ec75..c280fe2 100644 --- a/Data/Bits.hs +++ b/Data/Bits.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Bits -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Bits.hs,v 1.4 2002/02/05 17:32:25 simonmar Exp $ +-- $Id: Bits.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $ -- -- Bitwise operations. -- diff --git a/Data/Bool.hs b/Data/Bool.hs index a5518be..181df1e 100644 --- a/Data/Bool.hs +++ b/Data/Bool.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Bool -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Bool.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $ +-- $Id: Bool.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $ -- -- The Bool type and related functions. -- diff --git a/Data/Char.hs b/Data/Char.hs index 9174f15..a4bf1af 100644 --- a/Data/Char.hs +++ b/Data/Char.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Char -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Char.hs,v 1.2 2002/04/11 12:03:43 simonpj Exp $ +-- $Id: Char.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $ -- -- The Char type and associated operations. -- diff --git a/Data/Complex.hs b/Data/Complex.hs index 8482e50..e0738f1 100644 --- a/Data/Complex.hs +++ b/Data/Complex.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Complex -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Complex.hs,v 1.2 2001/12/21 15:07:21 simonmar Exp $ +-- $Id: Complex.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $ -- -- Complex numbers. -- diff --git a/Data/Dynamic.hs b/Data/Dynamic.hs index 598dc39..209eea5 100644 --- a/Data/Dynamic.hs +++ b/Data/Dynamic.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Dynamic -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Dynamic.hs,v 1.5 2002/03/14 12:09:49 simonmar Exp $ +-- $Id: Dynamic.hs,v 1.6 2002/04/24 16:31:39 simonmar Exp $ -- -- The Dynamic interface provides basic support for dynamic types. -- diff --git a/Data/Either.hs b/Data/Either.hs index 20dfe47..bc93248 100644 --- a/Data/Either.hs +++ b/Data/Either.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Either -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Either.hs,v 1.3 2001/07/03 14:13:32 simonmar Exp $ +-- $Id: Either.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $ -- -- The Either type, and associated operations. -- diff --git a/Data/FiniteMap.hs b/Data/FiniteMap.hs index 025fcef..b0fafd3 100644 --- a/Data/FiniteMap.hs +++ b/Data/FiniteMap.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.FiniteMap -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: FiniteMap.hs,v 1.1 2001/08/17 12:44:54 simonmar Exp $ +-- $Id: FiniteMap.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $ -- -- A finite map implementation, derived from the paper: -- S Adams, "Efficient sets: a balancing act" diff --git a/Data/Generics.hs b/Data/Generics.hs index b144a38..a2f6a87 100644 --- a/Data/Generics.hs +++ b/Data/Generics.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Generics -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Generics.hs,v 1.1 2001/07/04 11:06:39 simonmar Exp $ +-- $Id: Generics.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $ -- -- Data types for generic definitions. -- diff --git a/Data/IORef.hs b/Data/IORef.hs index 8d5ef77..d165380 100644 --- a/Data/IORef.hs +++ b/Data/IORef.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.IORef -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: IORef.hs,v 1.4 2002/01/02 14:40:09 simonmar Exp $ +-- $Id: IORef.hs,v 1.5 2002/04/24 16:31:39 simonmar Exp $ -- -- Mutable references in the IO monad. -- diff --git a/Data/Int.hs b/Data/Int.hs index d056134..8d8a921 100644 --- a/Data/Int.hs +++ b/Data/Int.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Int -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Int.hs,v 1.3 2002/03/14 12:09:49 simonmar Exp $ +-- $Id: Int.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $ -- -- Sized Integer types. -- diff --git a/Data/Ix.hs b/Data/Ix.hs index 5296e11..f7d41f3 100644 --- a/Data/Ix.hs +++ b/Data/Ix.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Ix -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Ix.hs,v 1.2 2001/12/21 15:07:21 simonmar Exp $ +-- $Id: Ix.hs,v 1.3 2002/04/24 16:31:39 simonmar Exp $ -- -- Class of index types. -- diff --git a/Data/List.hs b/Data/List.hs index ea2ff2a..2a37187 100644 --- a/Data/List.hs +++ b/Data/List.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.List -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: List.hs,v 1.3 2002/04/02 10:19:21 simonmar Exp $ +-- $Id: List.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $ -- -- Operations on lists. -- diff --git a/Data/Maybe.hs b/Data/Maybe.hs index 3f1ffad..36e684e 100644 --- a/Data/Maybe.hs +++ b/Data/Maybe.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Maybe -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Maybe.hs,v 1.3 2001/07/03 14:13:32 simonmar Exp $ +-- $Id: Maybe.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $ -- -- The Maybe type, and associated operations. -- diff --git a/Data/PackedString.hs b/Data/PackedString.hs index 2a315a2..cecb044 100644 --- a/Data/PackedString.hs +++ b/Data/PackedString.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.PackedString -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: PackedString.hs,v 1.3 2001/09/14 11:25:23 simonmar Exp $ +-- $Id: PackedString.hs,v 1.4 2002/04/24 16:31:39 simonmar Exp $ -- -- The PackedString type, and associated operations. -- diff --git a/Data/Ratio.hs b/Data/Ratio.hs index 42426ce..d71551e 100644 --- a/Data/Ratio.hs +++ b/Data/Ratio.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Ratio -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Ratio.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- $Id: Ratio.hs,v 1.2 2002/04/24 16:31:40 simonmar Exp $ -- -- Standard functions on rational numbers -- diff --git a/Data/STRef.hs b/Data/STRef.hs index c60b299..b3c4888 100644 --- a/Data/STRef.hs +++ b/Data/STRef.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.STRef -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable (requires non-portable module ST) -- --- $Id: STRef.hs,v 1.3 2002/03/04 17:25:36 panne Exp $ +-- $Id: STRef.hs,v 1.4 2002/04/24 16:31:40 simonmar Exp $ -- -- Mutable references in the ST monad. -- diff --git a/Data/Set.hs b/Data/Set.hs index 11f4b61..71f09c0 100644 --- a/Data/Set.hs +++ b/Data/Set.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Set -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Set.hs,v 1.1 2001/09/13 11:50:35 simonmar Exp $ +-- $Id: Set.hs,v 1.2 2002/04/24 16:31:40 simonmar Exp $ -- -- This implementation of sets sits squarely upon Data.FiniteMap. -- diff --git a/Data/Tuple.hs b/Data/Tuple.hs index d37642a..dc73a33 100644 --- a/Data/Tuple.hs +++ b/Data/Tuple.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Tuple -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Tuple.hs,v 1.2 2001/12/21 15:07:22 simonmar Exp $ +-- $Id: Tuple.hs,v 1.3 2002/04/24 16:31:42 simonmar Exp $ -- -- The tuple data types, and associated functions. -- diff --git a/Data/Unique.hs b/Data/Unique.hs index 97251ff..a1cbf6f 100644 --- a/Data/Unique.hs +++ b/Data/Unique.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Data.Unique -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Unique.hs,v 1.1 2001/07/04 10:48:39 simonmar Exp $ +-- $Id: Unique.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $ -- -- An infinite supply of unique objects, supporting ordering and equality. -- diff --git a/Data/Word.hs b/Data/Word.hs index b81a7d9..aaa7fd7 100644 --- a/Data/Word.hs +++ b/Data/Word.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Word.hs,v 1.3 2002/03/14 12:09:49 simonmar Exp $ +-- $Id: Word.hs,v 1.4 2002/04/24 16:31:43 simonmar Exp $ -- -- Sized unsigned integer types. -- diff --git a/Debug/QuickCheck.hs b/Debug/QuickCheck.hs index ccada06..bab6d2f 100644 --- a/Debug/QuickCheck.hs +++ b/Debug/QuickCheck.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Debug.QuickCheck -- Copyright : (c) Koen Claessen, John Hughes 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: QuickCheck.hs,v 1.1 2001/08/17 12:48:38 simonmar Exp $ +-- $Id: QuickCheck.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $ -- -- QuickCheck v.0.2 -- DRAFT implementation; last update 000104. diff --git a/Debug/QuickCheck/Batch.hs b/Debug/QuickCheck/Batch.hs index f5056f8..7b6373b 100644 --- a/Debug/QuickCheck/Batch.hs +++ b/Debug/QuickCheck/Batch.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Debug.QuickCheck.Batch -- Copyright : (c) Andy Gill 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable (uses Control.Exception, Control.Concurrent) -- --- $Id: Batch.hs,v 1.1 2001/08/17 12:48:38 simonmar Exp $ +-- $Id: Batch.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $ -- -- This is a batch driver for runing QuickCheck. -- diff --git a/Debug/QuickCheck/Poly.hs b/Debug/QuickCheck/Poly.hs index 495db61..4799d30 100644 --- a/Debug/QuickCheck/Poly.hs +++ b/Debug/QuickCheck/Poly.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Debug.QuickCheck.Poly -- Copyright : (c) Andy Gill 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable (uses Control.Exception, Control.Concurrent) -- --- $Id: Poly.hs,v 1.1 2002/02/11 12:28:04 simonmar Exp $ +-- $Id: Poly.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $ -- -- This is an attempt to emulate polymorphic types for the -- purposes of testing by using abstract monomorphic types. diff --git a/Debug/QuickCheck/Utils.hs b/Debug/QuickCheck/Utils.hs index a8c2df5..b353829 100644 --- a/Debug/QuickCheck/Utils.hs +++ b/Debug/QuickCheck/Utils.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Debug.QuickCheck.Utils -- Copyright : (c) Andy Gill 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Utils.hs,v 1.2 2001/12/21 15:07:22 simonmar Exp $ +-- $Id: Utils.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $ -- -- These are some general purpose utilities for use with QuickCheck. -- diff --git a/Debug/Trace.hs b/Debug/Trace.hs index 993a72e..79dcceb 100644 --- a/Debug/Trace.hs +++ b/Debug/Trace.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Debug.Trace -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Trace.hs,v 1.2 2002/04/24 16:01:51 simonmar Exp $ +-- $Id: Trace.hs,v 1.3 2002/04/24 16:31:43 simonmar Exp $ -- -- The trace function. -- diff --git a/Foreign.hs b/Foreign.hs index 1670110..41c56a6 100644 --- a/Foreign.hs +++ b/Foreign.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Foreign.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $ +-- $Id: Foreign.hs,v 1.3 2002/04/24 16:31:37 simonmar Exp $ -- -- A collection of data types, classes, and functions for interfacing -- with another programming language. This is only a convenience module diff --git a/Foreign/C.hs b/Foreign/C.hs index f961b8f..937d8dd 100644 --- a/Foreign/C.hs +++ b/Foreign/C.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.C -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: C.hs,v 1.2 2001/07/03 11:37:50 simonmar Exp $ +-- $Id: C.hs,v 1.3 2002/04/24 16:31:44 simonmar Exp $ -- -- Bundles the C specific FFI library functionality -- diff --git a/Foreign/C/Error.hs b/Foreign/C/Error.hs index a908f0f..171d5b4 100644 --- a/Foreign/C/Error.hs +++ b/Foreign/C/Error.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude -#include "HsBase.h" #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.C.Error -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Error.hs,v 1.6 2002/02/07 11:13:30 simonmar Exp $ +-- $Id: Error.hs,v 1.7 2002/04/24 16:31:44 simonmar Exp $ -- -- C-specific Marshalling support: Handling of C "errno" error codes -- diff --git a/Foreign/C/String.hs b/Foreign/C/String.hs index 00344db..6f465e5 100644 --- a/Foreign/C/String.hs +++ b/Foreign/C/String.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.C.String -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: String.hs,v 1.4 2001/09/13 11:37:43 simonmar Exp $ +-- $Id: String.hs,v 1.5 2002/04/24 16:31:44 simonmar Exp $ -- -- Utilities for primitive marshaling -- diff --git a/Foreign/C/Types.hs b/Foreign/C/Types.hs index eaffa3c..5def8b9 100644 --- a/Foreign/C/Types.hs +++ b/Foreign/C/Types.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.C.Types -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Types.hs,v 1.3 2002/02/05 17:32:25 simonmar Exp $ +-- $Id: Types.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $ -- -- Mapping of C types to corresponding Haskell types. A cool hack... -- diff --git a/Foreign/C/TypesISO.hs b/Foreign/C/TypesISO.hs index 0ecffdb..742fc73 100644 --- a/Foreign/C/TypesISO.hs +++ b/Foreign/C/TypesISO.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.C.TypesISO -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: TypesISO.hs,v 1.3 2002/02/05 17:32:25 simonmar Exp $ +-- $Id: TypesISO.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $ -- -- A mapping of C types defined by the ISO C standard to corresponding Haskell -- types. Like CTypes, this is a cool hack... diff --git a/Foreign/ForeignPtr.hs b/Foreign/ForeignPtr.hs index 5a02dca..a603587 100644 --- a/Foreign/ForeignPtr.hs +++ b/Foreign/ForeignPtr.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.ForeignPtr -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: ForeignPtr.hs,v 1.3 2001/07/31 16:35:29 simonmar Exp $ +-- $Id: ForeignPtr.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $ -- -- This module defines foreign pointers, i.e. addresses with associated -- finalizers. diff --git a/Foreign/Marshal/Alloc.hs b/Foreign/Marshal/Alloc.hs index 706b4b0..eb4b04b 100644 --- a/Foreign/Marshal/Alloc.hs +++ b/Foreign/Marshal/Alloc.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.Marshal.Alloc -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Alloc.hs,v 1.5 2002/02/05 17:32:25 simonmar Exp $ +-- $Id: Alloc.hs,v 1.6 2002/04/24 16:31:44 simonmar Exp $ -- -- Marshalling support: basic routines for memory allocation -- diff --git a/Foreign/Marshal/Array.hs b/Foreign/Marshal/Array.hs index 7b75b23..152b475 100644 --- a/Foreign/Marshal/Array.hs +++ b/Foreign/Marshal/Array.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.Marshal.Array -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Array.hs,v 1.4 2002/02/05 17:32:25 simonmar Exp $ +-- $Id: Array.hs,v 1.5 2002/04/24 16:31:44 simonmar Exp $ -- -- Marshalling support: routines allocating, storing, and retrieving Haskell -- lists that are represented as arrays in the foreign language diff --git a/Foreign/Marshal/Error.hs b/Foreign/Marshal/Error.hs index f65e055..5b43dfc 100644 --- a/Foreign/Marshal/Error.hs +++ b/Foreign/Marshal/Error.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.Marshal.Error -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Error.hs,v 1.2 2001/07/03 11:37:50 simonmar Exp $ +-- $Id: Error.hs,v 1.3 2002/04/24 16:31:44 simonmar Exp $ -- -- Marshalling support: Handling of common error conditions -- diff --git a/Foreign/Marshal/Utils.hs b/Foreign/Marshal/Utils.hs index b6864ca..5b21ca0 100644 --- a/Foreign/Marshal/Utils.hs +++ b/Foreign/Marshal/Utils.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.Marshal.Utils -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Utils.hs,v 1.3 2002/02/05 17:32:25 simonmar Exp $ +-- $Id: Utils.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $ -- -- Utilities for primitive marshaling -- diff --git a/Foreign/Ptr.hs b/Foreign/Ptr.hs index 7bbd4db..7d75e69 100644 --- a/Foreign/Ptr.hs +++ b/Foreign/Ptr.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.Ptr -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Ptr.hs,v 1.6 2002/03/20 15:38:36 simonmar Exp $ +-- $Id: Ptr.hs,v 1.7 2002/04/24 16:31:44 simonmar Exp $ -- -- Pointer types. -- diff --git a/Foreign/StablePtr.hs b/Foreign/StablePtr.hs index dea0a48..48acc57 100644 --- a/Foreign/StablePtr.hs +++ b/Foreign/StablePtr.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.StablePtr -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: StablePtr.hs,v 1.3 2002/03/14 12:09:50 simonmar Exp $ +-- $Id: StablePtr.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $ -- -- Stable pointers. -- diff --git a/Foreign/Storable.hs b/Foreign/Storable.hs index 755b383..869916d 100644 --- a/Foreign/Storable.hs +++ b/Foreign/Storable.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Foreign.Storable -- Copyright : (c) The FFI task force 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Storable.hs,v 1.3 2002/02/05 17:32:25 simonmar Exp $ +-- $Id: Storable.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $ -- -- A class for primitive marshaling -- diff --git a/GHC/Exts.hs b/GHC/Exts.hs index 699edbf..4041fda 100644 --- a/GHC/Exts.hs +++ b/GHC/Exts.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : GHC.Exts -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Exts.hs,v 1.4 2002/04/11 12:03:44 simonpj Exp $ +-- $Id: Exts.hs,v 1.5 2002/04/24 16:31:45 simonmar Exp $ -- -- GHC Extensions: this is the Approved Way to get at GHC-specific stuff. -- diff --git a/GHC/Ptr.lhs b/GHC/Ptr.lhs index dc6186a..0bf1520 100644 --- a/GHC/Ptr.lhs +++ b/GHC/Ptr.lhs @@ -1,8 +1,8 @@ ----------------------------------------------------------------------------- --- $Id: Ptr.lhs,v 1.2 2001/12/21 15:07:25 simonmar Exp $ +-- $Id: Ptr.lhs,v 1.3 2002/04/24 16:31:45 simonmar Exp $ -- -- (c) The FFI Task Force, 2000 --- +-- | -- Module GHC.Ptr \begin{code} diff --git a/Numeric.hs b/Numeric.hs index 78af5b0..01036b2 100644 --- a/Numeric.hs +++ b/Numeric.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Numeric -- Copyright : (c) The University of Glasgow 2002 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Numeric.hs,v 1.6 2002/04/11 12:03:43 simonpj Exp $ +-- $Id: Numeric.hs,v 1.7 2002/04/24 16:31:37 simonmar Exp $ -- -- Odds and ends, mostly functions for reading and showing -- RealFloat-like kind of values. diff --git a/Prelude.hs b/Prelude.hs index ffdd4eb..ccbf617 100644 --- a/Prelude.hs +++ b/Prelude.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Prelude -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Prelude.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $ +-- $Id: Prelude.hs,v 1.3 2002/04/24 16:31:37 simonmar Exp $ -- -- Standard module imported by default into Haskell modules. -- diff --git a/System/CPUTime.hsc b/System/CPUTime.hsc index 25098fe..e7de787 100644 --- a/System/CPUTime.hsc +++ b/System/CPUTime.hsc @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.CPUTime -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: CPUTime.hsc,v 1.7 2002/04/24 16:03:39 simonmar Exp $ +-- $Id: CPUTime.hsc,v 1.8 2002/04/24 16:31:45 simonmar Exp $ -- -- The standard CPUTime library. -- diff --git a/System/Cmd.hs b/System/Cmd.hs index 7f7ca20..6a47db0 100644 --- a/System/Cmd.hs +++ b/System/Cmd.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Cmd -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Cmd.hs,v 1.2 2002/04/24 16:09:12 simonmar Exp $ +-- $Id: Cmd.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $ -- -- Executing a command. -- diff --git a/System/Console/GetOpt.hs b/System/Console/GetOpt.hs index 1aa1b7e..2456df6 100644 --- a/System/Console/GetOpt.hs +++ b/System/Console/GetOpt.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Console.GetOpt -- Copyright : (c) Sven Panne Oct. 1996 (small changes Dec. 1997) -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: GetOpt.hs,v 1.2 2001/07/04 11:30:52 simonmar Exp $ +-- $Id: GetOpt.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $ -- -- A Haskell port of GNU's getopt library -- diff --git a/System/Directory.hs b/System/Directory.hs index b6047a9..b860958 100644 --- a/System/Directory.hs +++ b/System/Directory.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Directory -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Directory.hs,v 1.2 2002/04/24 15:47:10 sof Exp $ +-- $Id: Directory.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $ -- -- System-independent interface to directory manipulation. -- diff --git a/System/Environment.hs b/System/Environment.hs index 76005a9..117b7db 100644 --- a/System/Environment.hs +++ b/System/Environment.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Environment -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Environment.hs,v 1.5 2002/04/24 16:09:22 simonmar Exp $ +-- $Id: Environment.hs,v 1.6 2002/04/24 16:31:45 simonmar Exp $ -- -- Miscellaneous information about the system environment. -- diff --git a/System/Exit.hs b/System/Exit.hs index 28597ad..6d486c9 100644 --- a/System/Exit.hs +++ b/System/Exit.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Exit -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Exit.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $ +-- $Id: Exit.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $ -- -- Exiting the program. -- diff --git a/System/IO.hs b/System/IO.hs index b28e1dc..b034132 100644 --- a/System/IO.hs +++ b/System/IO.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : System.IO -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: IO.hs,v 1.6 2002/03/14 12:09:52 simonmar Exp $ +-- $Id: IO.hs,v 1.7 2002/04/24 16:31:45 simonmar Exp $ -- -- The standard IO library. -- diff --git a/System/IO/Error.hs b/System/IO/Error.hs index 04bf6c6..d18a7c5 100644 --- a/System/IO/Error.hs +++ b/System/IO/Error.hs @@ -1,7 +1,7 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : System.IO.Error -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -10,7 +10,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Error.hs,v 1.3 2002/03/27 17:55:26 simonmar Exp $ +-- $Id: Error.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $ -- -- Standard IO Errors. -- diff --git a/System/IO/Unsafe.hs b/System/IO/Unsafe.hs index ebe4463..2f98633 100644 --- a/System/IO/Unsafe.hs +++ b/System/IO/Unsafe.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.IO.Unsafe -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Unsafe.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $ +-- $Id: Unsafe.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $ -- -- "Unsafe" IO operations. -- diff --git a/System/Info.hs b/System/Info.hs index 9b61867..adcfe79 100644 --- a/System/Info.hs +++ b/System/Info.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Info -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Info.hs,v 1.2 2001/07/03 11:37:50 simonmar Exp $ +-- $Id: Info.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $ -- -- Misc information about the characteristics of the host -- architecture/machine lucky enough to run your program. diff --git a/System/Locale.hs b/System/Locale.hs index cc5a34e..e58335f 100644 --- a/System/Locale.hs +++ b/System/Locale.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Locale -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Locale.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $ +-- $Id: Locale.hs,v 1.2 2002/04/24 16:31:45 simonmar Exp $ -- -- Operations for defining locale-specific date and time formats. -- diff --git a/System/Mem.hs b/System/Mem.hs index 13dcbcb..984db4e 100644 --- a/System/Mem.hs +++ b/System/Mem.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Mem -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Mem.hs,v 1.3 2002/04/24 16:09:35 simonmar Exp $ +-- $Id: Mem.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $ -- -- Memory-related system things. -- diff --git a/System/Mem/StableName.hs b/System/Mem/StableName.hs index c40704d..f52be1d 100644 --- a/System/Mem/StableName.hs +++ b/System/Mem/StableName.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Mem.StableName -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: StableName.hs,v 1.3 2001/12/21 15:07:26 simonmar Exp $ +-- $Id: StableName.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $ -- -- Giving an object a stable (GC-invariant) name. -- diff --git a/System/Mem/Weak.hs b/System/Mem/Weak.hs index 6a092e0..6a25986 100644 --- a/System/Mem/Weak.hs +++ b/System/Mem/Weak.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Mem.Weak -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Weak.hs,v 1.2 2001/09/13 11:36:52 simonmar Exp $ +-- $Id: Weak.hs,v 1.3 2002/04/24 16:31:45 simonmar Exp $ -- -- Weak references, weak pairs, weak pointers, and finalizers. -- diff --git a/System/Random.hs b/System/Random.hs index 0b5286b..59ff300 100644 --- a/System/Random.hs +++ b/System/Random.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Random -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Random.hs,v 1.3 2002/04/11 12:03:44 simonpj Exp $ +-- $Id: Random.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $ -- -- Random numbers. -- diff --git a/System/Time.hsc b/System/Time.hsc index 9d696cd..4db1d61 100644 --- a/System/Time.hsc +++ b/System/Time.hsc @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : System.Time -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Time.hsc,v 1.11 2002/03/26 21:07:06 sof Exp $ +-- $Id: Time.hsc,v 1.12 2002/04/24 16:31:45 simonmar Exp $ -- -- The standard Time library. -- diff --git a/Text/Html.hs b/Text/Html.hs index a4d7f46..2967c39 100644 --- a/Text/Html.hs +++ b/Text/Html.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Text.Html -- Copyright : (c) Andy Gill, and the Oregon Graduate Institute of -- Science and Technology, 1999-2001 @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Html.hs,v 1.1 2001/08/01 13:53:07 simonmar Exp $ +-- $Id: Html.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $ -- -- An Html combinator library -- diff --git a/Text/Html/BlockTable.hs b/Text/Html/BlockTable.hs index 8211c4e..c5891f9 100644 --- a/Text/Html/BlockTable.hs +++ b/Text/Html/BlockTable.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Text.Html.BlockTable -- Copyright : (c) Andy Gill, and the Oregon Graduate Institute of -- Science and Technology, 1999-2001 @@ -9,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: BlockTable.hs,v 1.1 2001/08/01 13:53:07 simonmar Exp $ +-- $Id: BlockTable.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $ -- -- An Html combinator library -- diff --git a/Text/PrettyPrint.hs b/Text/PrettyPrint.hs index 34b8b66..7f730ca 100644 --- a/Text/PrettyPrint.hs +++ b/Text/PrettyPrint.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Text.PrettyPrint -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: PrettyPrint.hs,v 1.2 2001/09/13 11:39:14 simonmar Exp $ +-- $Id: PrettyPrint.hs,v 1.3 2002/04/24 16:31:46 simonmar Exp $ -- -- Re-export of Text.PrettyPrint.HughesPJ to provide a default -- pretty-printing library. Marked experimental at the moment so we diff --git a/Text/PrettyPrint/HughesPJ.hs b/Text/PrettyPrint/HughesPJ.hs index 939ab1d..8b77da8 100644 --- a/Text/PrettyPrint/HughesPJ.hs +++ b/Text/PrettyPrint/HughesPJ.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Text.PrettyPrint.HughesPJ -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: HughesPJ.hs,v 1.1 2001/08/17 12:46:16 simonmar Exp $ +-- $Id: HughesPJ.hs,v 1.2 2002/04/24 16:31:47 simonmar Exp $ -- -- John Hughes's and Simon Peyton Jones's Pretty Printer Combinators -- diff --git a/Text/Read.hs b/Text/Read.hs index 47813eb..e0c1d24 100644 --- a/Text/Read.hs +++ b/Text/Read.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Text.Read -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Read.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $ +-- $Id: Read.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $ -- -- Exiting the program. -- diff --git a/Text/Regex.hs b/Text/Regex.hs index c7731d2..43a73a3 100644 --- a/Text/Regex.hs +++ b/Text/Regex.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Text.Regex -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable (only on platforms that provide a regex lib) -- --- $Id: Regex.hs,v 1.1 2001/08/02 11:20:50 simonmar Exp $ +-- $Id: Regex.hs,v 1.2 2002/04/24 16:31:46 simonmar Exp $ -- -- Regular expression matching. -- Uses the POSIX regular expression interface in Text.Regex.Posix for now. diff --git a/Text/Regex/Posix.hsc b/Text/Regex/Posix.hsc index 64275c6..1035518 100644 --- a/Text/Regex/Posix.hsc +++ b/Text/Regex/Posix.hsc @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Text.Regex.Posix -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable (only on platforms that provide POSIX regexps) -- --- $Id: Posix.hsc,v 1.6 2002/02/16 18:04:28 simonmar Exp $ +-- $Id: Posix.hsc,v 1.7 2002/04/24 16:31:47 simonmar Exp $ -- -- Interface to the POSIX regular expression library. -- ToDo: should have an interface using PackedStrings. diff --git a/Text/Show.hs b/Text/Show.hs index 17e9f44..87597c0 100644 --- a/Text/Show.hs +++ b/Text/Show.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- --- +-- | -- Module : Text.Show -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -9,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Show.hs,v 1.2 2001/07/04 12:06:33 simonmar Exp $ +-- $Id: Show.hs,v 1.3 2002/04/24 16:31:46 simonmar Exp $ -- -- The Show class and associated functions. -- diff --git a/Text/Show/Functions.hs b/Text/Show/Functions.hs index b246c44..5b85b4c 100644 --- a/Text/Show/Functions.hs +++ b/Text/Show/Functions.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Text.Show.Functions -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/core/LICENSE) @@ -8,7 +8,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Functions.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $ +-- $Id: Functions.hs,v 1.2 2002/04/24 16:31:47 simonmar Exp $ -- -- Optional instance of Text.Show.Show for functions. --