ghc-base.git
12 years agoadd GHC.HetMet.{hetmet_kappa,hetmet_kappa_app} master
Adam Megacz [Sat, 14 Apr 2012 21:36:50 +0000 (14:36 -0700)]
add GHC.HetMet.{hetmet_kappa,hetmet_kappa_app}

12 years agomove GArrow from GHC.HetMet to Control
Adam Megacz [Wed, 4 Apr 2012 21:46:13 +0000 (14:46 -0700)]
move GArrow from GHC.HetMet to Control

12 years agorename classes to create GArrowCopyDropSwap[Loop]
Adam Megacz [Tue, 3 Apr 2012 04:04:06 +0000 (21:04 -0700)]
rename classes to create GArrowCopyDropSwap[Loop]

12 years agoswap <[]> and <{}> syntax
Adam Megacz [Sun, 2 Oct 2011 02:43:46 +0000 (19:43 -0700)]
swap <[]> and <{}> syntax

12 years agocomment out references to module not implemented yet
Adam Megacz [Tue, 30 Aug 2011 06:38:05 +0000 (23:38 -0700)]
comment out references to module not implemented yet

12 years agoGArrowFullyEnriched: minimize context of the data declaration
Adam Megacz [Sat, 25 Jun 2011 20:44:05 +0000 (13:44 -0700)]
GArrowFullyEnriched: minimize context of the data declaration

12 years agoGArrowFullyEnriched: clean up imports and context
Adam Megacz [Mon, 29 Aug 2011 23:57:58 +0000 (16:57 -0700)]
GArrowFullyEnriched: clean up imports and context

12 years agoIGArrow: major cleanup, finished instance IKappa (->)
Adam Megacz [Wed, 22 Jun 2011 05:19:52 +0000 (22:19 -0700)]
IGArrow: major cleanup, finished instance IKappa (->)

12 years agoGArrowFullyEnriched: avoid need for UndecidableInstances
Adam Megacz [Wed, 22 Jun 2011 05:19:29 +0000 (22:19 -0700)]
GArrowFullyEnriched: avoid need for UndecidableInstances

12 years agoadjust GArrow class fundeps to make meeting the Coverage Condition easier
Adam Megacz [Wed, 22 Jun 2011 05:19:05 +0000 (22:19 -0700)]
adjust GArrow class fundeps to make meeting the Coverage Condition easier

12 years agoclean up LANGUAGE pragma in GArrow.hs
Adam Megacz [Wed, 22 Jun 2011 05:18:48 +0000 (22:18 -0700)]
clean up LANGUAGE pragma in GArrow.hs

12 years agoIGArrow: some improvements
Adam Megacz [Tue, 21 Jun 2011 03:04:39 +0000 (20:04 -0700)]
IGArrow: some improvements

12 years agoGArrowFullyEnriched: better algorithm, avoids drop/copy/swap
Adam Megacz [Tue, 21 Jun 2011 03:04:02 +0000 (20:04 -0700)]
GArrowFullyEnriched: better algorithm, avoids drop/copy/swap

12 years agomove things out of GHC.HetMet.CodeTypes into GHC.HetMet.GuestLanguage
Adam Megacz [Mon, 20 Jun 2011 05:57:26 +0000 (22:57 -0700)]
move things out of GHC.HetMet.CodeTypes into GHC.HetMet.GuestLanguage

12 years agoadd IGArrow: internal GArrows
Adam Megacz [Mon, 20 Jun 2011 02:01:12 +0000 (19:01 -0700)]
add IGArrow: internal GArrows

12 years agorename GArrowKappa to GArrowFullyEnriched
Adam Megacz [Mon, 20 Jun 2011 02:01:02 +0000 (19:01 -0700)]
rename GArrowKappa to GArrowFullyEnriched

12 years agoremove GArrowInstances
Adam Megacz [Mon, 20 Jun 2011 01:59:24 +0000 (18:59 -0700)]
remove GArrowInstances

12 years agoNew gcd documentation
Daniel Fischer [Sun, 29 May 2011 17:33:57 +0000 (19:33 +0200)]
New gcd documentation

Based on Ross Paterson's suggestion, a short explanation of the
meaning of gcd, and a mention of possible negative results.

12 years agoFix suseconds configure test on Windows
Ian Lynagh [Sun, 12 Jun 2011 13:25:24 +0000 (14:25 +0100)]
Fix suseconds configure test on Windows

12 years agoAdjust behaviour of gcd
Daniel Fischer [Tue, 17 May 2011 20:53:40 +0000 (22:53 +0200)]
Adjust behaviour of gcd

Change behaviour of 'gcd 0 0' from raising an exception to
returning 0 to make it total and conform to mathematical practice.

12 years agoconfigure: fail if suseconds_t doesn't exist, except on Windows
Ian Lynagh [Sun, 12 Jun 2011 12:05:03 +0000 (13:05 +0100)]
configure: fail if suseconds_t doesn't exist, except on Windows

On Windows we use Int32.

12 years agoIn configure, set $WINDOWS to YES or NO
Ian Lynagh [Sun, 12 Jun 2011 11:59:04 +0000 (12:59 +0100)]
In configure, set $WINDOWS to YES or NO

rather than inlining the implementation of the test.

12 years agoRefactor the FPTOOLS_CHECK_HTYPE macro
Ian Lynagh [Sun, 12 Jun 2011 11:54:48 +0000 (12:54 +0100)]
Refactor the FPTOOLS_CHECK_HTYPE macro

We can now specify what happens if the type doesn't exist

12 years agoIn configure, remove default Haskell equivalent of C types
Ian Lynagh [Sun, 12 Jun 2011 11:48:31 +0000 (12:48 +0100)]
In configure, remove default Haskell equivalent of C types

The macro was just ignoring the defaults.

12 years agoRemove wint_t configure test
Ian Lynagh [Sat, 11 Jun 2011 23:19:51 +0000 (00:19 +0100)]
Remove wint_t configure test

We didn't actually use the result, and my Linux box doesn't have
wint_t.

12 years agoUse CSUSeconds in getCPUTime and getCurrentTime. Fixes #4247.
William Knop [Tue, 5 Apr 2011 01:01:39 +0000 (21:01 -0400)]
Use CSUSeconds in getCPUTime and getCurrentTime. Fixes #4247.

The tv_usec field of struct timeval was incorrectly used as C type time_t; the actual C type is suseconds_t. On OS X, time_t is longer than suseconds_t, which caused garbage bits to be copied as reported in trace #4247 and #4970. This is patch 3 of 4 to fix those tickets.

12 years agoWhitespace only. This patch is part 2 of 4 for trac #4247 and #4970.
William Knop [Tue, 5 Apr 2011 00:40:06 +0000 (20:40 -0400)]
Whitespace only. This patch is part 2 of 4 for trac #4247 and #4970.

12 years agoAdd Haskell types for C types useconds_t and suseconds_t, which are respectively...
William Knop [Tue, 5 Apr 2011 00:24:36 +0000 (20:24 -0400)]
Add Haskell types for C types useconds_t and suseconds_t, which are respectively CUSeconds and CSUSeconds.

The tv_usec field of struct timeval was incorrectly used as C type time_t; the actual C type is suseconds_t. On OS X, time_t is longer than suseconds_t, which caused garbage bits to be copied as reported in trac #4247 and #4970. This patch is part 1 of 4 to fix those tickets.

12 years agoMake 'forever' inlinable (fixes Trac #5205)
Simon Peyton Jones [Thu, 9 Jun 2011 19:44:21 +0000 (20:44 +0100)]
Make 'forever' inlinable (fixes Trac #5205)

See Note [Make forever INLINABLE] in Control.Monad

12 years agoadd GArrowSTKCL for flattening of fixpoints
Adam Megacz [Thu, 2 Jun 2011 02:05:17 +0000 (19:05 -0700)]
add GArrowSTKCL for flattening of fixpoints

12 years agoArrow.hs: fix loopl/loopr transposition
Adam Megacz [Thu, 2 Jun 2011 02:03:50 +0000 (19:03 -0700)]
Arrow.hs: fix loopl/loopr transposition

12 years agoadd GArrowKappa
Adam Megacz [Tue, 31 May 2011 22:00:04 +0000 (15:00 -0700)]
add GArrowKappa

12 years agofix type mistake in CodeTypes.hs
Adam Megacz [Sun, 15 May 2011 06:53:03 +0000 (23:53 -0700)]
fix type mistake in CodeTypes.hs

12 years agoenable argument types in pga_{un}flatten
Adam Megacz [Sat, 14 May 2011 03:34:50 +0000 (20:34 -0700)]
enable argument types in pga_{un}flatten

12 years agoadd GArrowTensor, GArrowUnit, and GArrowExponent which use type families to reduce...
Adam Megacz [Tue, 10 May 2011 04:59:46 +0000 (21:59 -0700)]
add GArrowTensor, GArrowUnit, and GArrowExponent which use type families to reduce the type-level clutter caused by generalized arrows having 3-4 parameters

12 years agoadd hetmet_unflatten
Adam Megacz [Mon, 9 May 2011 21:11:51 +0000 (14:11 -0700)]
add hetmet_unflatten

12 years agoadd support for hetmet_flatten casting variable
Adam Megacz [Mon, 9 May 2011 08:19:00 +0000 (01:19 -0700)]
add support for hetmet_flatten casting variable

12 years agoupdate GHC.HetMet.CodeTypes using *->*->* as the kind of environment classifiers
Adam Megacz [Mon, 9 May 2011 06:30:14 +0000 (23:30 -0700)]
update GHC.HetMet.CodeTypes using *->*->* as the kind of environment classifiers

12 years agoPrivate.hs: make datacon name different from tycon name, add explicit foralls
Adam Megacz [Mon, 9 May 2011 04:22:47 +0000 (21:22 -0700)]
Private.hs: make datacon name different from tycon name, add explicit foralls

12 years agoadd experimental GArrowKappa
Adam Megacz [Thu, 5 May 2011 04:18:01 +0000 (21:18 -0700)]
add experimental GArrowKappa

12 years agoadd first draft of GHC.HetMet.Private
Adam Megacz [Thu, 5 May 2011 03:18:40 +0000 (20:18 -0700)]
add first draft of GHC.HetMet.Private

12 years agoadd experimental GArrowStatic
Adam Megacz [Sun, 1 May 2011 04:18:41 +0000 (21:18 -0700)]
add experimental GArrowStatic

12 years agorephrase GArrow{Sum,Prod} to make instance inference easier
Adam Megacz [Sat, 16 Apr 2011 21:56:43 +0000 (14:56 -0700)]
rephrase GArrow{Sum,Prod} to make instance inference easier

12 years agoadd more fundeps for GArrow clases, remove -XFlexibleInstances
Adam Megacz [Thu, 14 Apr 2011 21:41:20 +0000 (14:41 -0700)]
add more fundeps for GArrow clases, remove -XFlexibleInstances

12 years agoadd GArrowSTKC, GArrowPCF
Adam Megacz [Mon, 11 Apr 2011 00:03:58 +0000 (17:03 -0700)]
add GArrowSTKC, GArrowPCF

12 years agoadd ga_inl, ga_inr
Adam Megacz [Fri, 8 Apr 2011 04:51:57 +0000 (04:51 +0000)]
add ga_inl, ga_inr

12 years agore-order type arguments to GArrowProd
Adam Megacz [Fri, 8 Apr 2011 04:11:10 +0000 (04:11 +0000)]
re-order type arguments to GArrowProd

12 years agoadd Arrow=>GArrowProd instance
Adam Megacz [Fri, 8 Apr 2011 04:10:35 +0000 (04:10 +0000)]
add Arrow=>GArrowProd instance

12 years agoadd ArrowChoice=>GArrowSum instance
Adam Megacz [Fri, 8 Apr 2011 04:05:35 +0000 (04:05 +0000)]
add ArrowChoice=>GArrowSum instance

12 years agofix incorrect type on GArrowCurry
Adam Megacz [Fri, 25 Mar 2011 23:44:05 +0000 (16:44 -0700)]
fix incorrect type on GArrowCurry

12 years agofinal revision to GArrow classes
Adam Megacz [Tue, 22 Mar 2011 01:24:38 +0000 (18:24 -0700)]
final revision to GArrow classes

12 years agoadjust some of the names in GHC.HetMet.GArrow
Adam Megacz [Sat, 19 Mar 2011 19:47:25 +0000 (12:47 -0700)]
adjust some of the names in GHC.HetMet.GArrow

12 years agomove the (Arrow a)=>(GArrow a (,)) instance to a separate file
Adam Megacz [Sat, 19 Mar 2011 19:44:29 +0000 (12:44 -0700)]
move the (Arrow a)=>(GArrow a (,)) instance to a separate file

12 years agoremove unnecessary testing definition from CodeTypes.hs
Adam Megacz [Sat, 19 Mar 2011 19:33:34 +0000 (12:33 -0700)]
remove unnecessary testing definition from CodeTypes.hs

12 years agomake Control.Category a superclass of GArrow
Adam Megacz [Sat, 19 Mar 2011 19:32:20 +0000 (12:32 -0700)]
make Control.Category a superclass of GArrow

12 years agoadd Control.Category instance for GArrow
Adam Megacz [Sat, 19 Mar 2011 19:32:15 +0000 (12:32 -0700)]
add Control.Category instance for GArrow

12 years agoadd GArrow instance for Control.Arrow
Adam Megacz [Sat, 19 Mar 2011 19:32:13 +0000 (12:32 -0700)]
add GArrow instance for Control.Arrow

12 years agoimprove comments in GHC.HetMet.GArrow
Adam Megacz [Sat, 19 Mar 2011 19:32:10 +0000 (12:32 -0700)]
improve comments in GHC.HetMet.GArrow

12 years agomigrate HetMet base changes to git repo
Adam Megacz [Sat, 19 Mar 2011 19:32:04 +0000 (12:32 -0700)]
migrate HetMet base changes to git repo

12 years agoMerge remote branch 'origin/master' into ghc-generics
Simon Peyton Jones [Thu, 26 May 2011 13:33:23 +0000 (14:33 +0100)]
Merge remote branch 'origin/master' into ghc-generics

12 years agoMerge branch 'ghc-generics' of http://darcs.haskell.org/packages/base into ghc-generics
Simon Peyton Jones [Wed, 25 May 2011 06:54:29 +0000 (07:54 +0100)]
Merge branch 'ghc-generics' of darcs.haskell.org/packages/base into ghc-generics

12 years agoRemove datatype contexts from base
Ian Lynagh [Tue, 24 May 2011 22:26:00 +0000 (23:26 +0100)]
Remove datatype contexts from base

The Haskell' committee decided to remove datatype contexts from the language:
http://www.haskell.org/pipermail/haskell-prime/2011-January/003335.html

12 years agoadd final newline
Simon Marlow [Mon, 23 May 2011 10:19:55 +0000 (11:19 +0100)]
add final newline

12 years agodocument the behaviour of throwTo to the current thread (#4888)
Simon Marlow [Tue, 24 May 2011 10:02:52 +0000 (11:02 +0100)]
document the behaviour of throwTo to the current thread (#4888)

12 years agodocument the memory model of IORef
Simon Marlow [Tue, 24 May 2011 10:02:29 +0000 (11:02 +0100)]
document the memory model of IORef

12 years agodocs: note strict sequential ordering of MVar operations
Simon Marlow [Thu, 19 May 2011 14:46:30 +0000 (15:46 +0100)]
docs: note strict sequential ordering of MVar operations

12 years agoAdd System.IO.char8, the encoding used by openBinaryFile,
Simon Marlow [Tue, 5 Apr 2011 08:57:22 +0000 (09:57 +0100)]
Add System.IO.char8, the encoding used by openBinaryFile,
and correct the documentation for hSetBinaryMode which claimed that
it was using the latin1 encoding when in fact it was using an
unchecked modulo-256 version of it.

12 years agoMove tests from testsuite/tests/libraries
Ian Lynagh [Sun, 8 May 2011 21:04:51 +0000 (22:04 +0100)]
Move tests from testsuite/tests/libraries

12 years agoAdd tests from testsuite/tests/h98
Ian Lynagh [Sun, 8 May 2011 20:14:09 +0000 (21:14 +0100)]
Add tests from testsuite/tests/h98

12 years agoMerge branch 'master' of http://darcs.haskell.org/packages/base into ghc-generics
Jose Pedro Magalhaes [Fri, 20 May 2011 18:15:48 +0000 (20:15 +0200)]
Merge branch 'master' of darcs.haskell.org/packages/base into ghc-generics

12 years agoMerge remote branch 'origin/master' into ghc-generics
Simon Peyton Jones [Thu, 19 May 2011 07:38:35 +0000 (08:38 +0100)]
Merge remote branch 'origin/master' into ghc-generics

12 years agoChange to the 0xEF80..0xEFFF private-use range for //ROUNDTRIP
Max Bolingbroke [Wed, 18 May 2011 22:13:30 +0000 (23:13 +0100)]
Change to the 0xEF80..0xEFFF private-use range for //ROUNDTRIP

12 years agoUse Unicode private-use characters for roundtripping
Max Bolingbroke [Wed, 18 May 2011 08:41:49 +0000 (09:41 +0100)]
Use Unicode private-use characters for roundtripping

This replaces the previous scheme (which used lone surrogates). The reason is that
there is Haskell software in the wild (i.e. the text package) that chokes on Char values
that do not represent Unicode characters.

This new approach will not work correctly if the reserved private-use characters are
actually encountered in the input, but we expect this to be rare.

12 years agoMerge branch 'master' of http://darcs.haskell.org/packages/base into ghc-generics
Jose Pedro Magalhaes [Tue, 17 May 2011 06:51:23 +0000 (08:51 +0200)]
Merge branch 'master' of darcs.haskell.org/packages/base into ghc-generics

12 years agoBig patch to improve Unicode support in GHC. Validated on OS X and Windows, this
Max Bolingbroke [Sat, 14 May 2011 21:50:46 +0000 (22:50 +0100)]
Big patch to improve Unicode support in GHC. Validated on OS X and Windows, this
patch series fixes #5061, #1414, #3309, #3308, #3307, #4006 and #4855.

The major changes are:

 1) Make Foreign.C.String.*CString use the locale encoding

    This change follows the FFI specification in Haskell 98, which
    has never actually been implemented before.

    The functions exported from Foreign.C.String are partially-applied
    versions of those from GHC.Foreign, which allows the user to supply
    their own TextEncoding.

    We also introduce foreignEncoding as the name of the text encoding
    that follows the FFI appendix in that it transliterates encoding
    errors.

 2) I also changed the code so that mkTextEncoding always tries the
    native-Haskell decoders in preference to those from iconv, even on
    non-Windows. The motivation here is simply that it is better for
    compatibility if we do this, and those are the ones you get for
    the utf* and latin1* predefined TextEncodings anyway.

 3) Implement surrogate-byte error handling mode for TextEncoding

    This implements PEP383-like behaviour so that we are able to
    roundtrip byte strings through Strings without loss of information.

    The withFilePath function now uses this encoding to get to/from CStrings,
    so any code that uses that will get the right PEP383 behaviour automatically.

 4) Implement three other coding failure modes: ignore, throw error, transliterate

    These mimic the behaviour of the GNU Iconv extensions.

12 years agoMerge branch 'master' of http://darcs.haskell.org/packages/base into ghc-generics
Jose Pedro Magalhaes [Thu, 12 May 2011 11:20:48 +0000 (13:20 +0200)]
Merge branch 'master' of darcs.haskell.org/packages/base into ghc-generics

12 years agodisable incorrect RULEs for Floats (#5178)
Simon Marlow [Tue, 10 May 2011 09:46:45 +0000 (10:46 +0100)]
disable incorrect RULEs for Floats (#5178)

12 years agoAdapt to the renaming of `Representable0` to `Generic`.
Jose Pedro Magalhaes [Mon, 9 May 2011 07:47:29 +0000 (09:47 +0200)]
Adapt to the renaming of `Representable0` to `Generic`.

12 years agoMerge branch 'master' of http://darcs.haskell.org/packages/base into ghc-generics
Jose Pedro Magalhaes [Wed, 4 May 2011 19:09:29 +0000 (21:09 +0200)]
Merge branch 'master' of darcs.haskell.org/packages/base into ghc-generics

12 years agoMerge branch 'monad-comp'
Simon Peyton Jones [Wed, 4 May 2011 15:38:41 +0000 (16:38 +0100)]
Merge branch 'monad-comp'

12 years agoAdd Representable0 instances to Either and Maybe.
Jose Pedro Magalhaes [Wed, 4 May 2011 09:18:46 +0000 (11:18 +0200)]
Add Representable0 instances to Either and Maybe.

12 years agoMove Eq and Ord for Int from GHC.Base to GHC.Classes, so they are not longer orphan.
Jose Pedro Magalhaes [Tue, 3 May 2011 13:40:33 +0000 (15:40 +0200)]
Move Eq and Ord for Int from GHC.Base to GHC.Classes, so they are not longer orphan.

Put Eq and Ord instances for Arity, Associativity, and Fixity in GHC.Classes, Show instances in GHC.Show, and Read instances in GHC.Read.

12 years agoMoved the CString functions to GHC.CString in ghc-prim (needed for the new generic...
Jose Pedro Magalhaes [Tue, 3 May 2011 09:50:30 +0000 (11:50 +0200)]
Moved the CString functions to GHC.CString in ghc-prim (needed for the new generic deriving mechanism).

Import and re-export GHC.CString from GHC.Base.

12 years agoMerge branch 'master' of http://darcs.haskell.org/packages/base into ghc-generics
Jose Pedro Magalhaes [Mon, 2 May 2011 19:13:19 +0000 (21:13 +0200)]
Merge branch 'master' of darcs.haskell.org/packages/base into ghc-generics

Solved conflicts:
GHC/Int.hs

12 years agoComment the generics stuff instances in GHC.Int, for now.
Jose Pedro Magalhaes [Mon, 2 May 2011 18:50:35 +0000 (20:50 +0200)]
Comment the generics stuff instances in GHC.Int, for now.

12 years agoAdd a note about the definition of quot etc
Ian Lynagh [Sat, 30 Apr 2011 14:52:57 +0000 (15:52 +0100)]
Add a note about the definition of quot etc

Based on Simon PJ's text in #5161.

12 years agoAdd GHC.Event.getSystemEventManager :: IO (Maybe EventManager)
Bas van Dijk [Mon, 4 Apr 2011 18:22:09 +0000 (20:22 +0200)]
Add GHC.Event.getSystemEventManager :: IO (Maybe EventManager)

12 years agoPerformance improvement for division: got rid of an unnecessary branching in cases...
Denys Rtveliashvili [Thu, 28 Apr 2011 07:45:10 +0000 (08:45 +0100)]
Performance improvement for division: got rid of an unnecessary branching in cases where the second argument is a constant and is not -1.

12 years agomonad comprehensions: Group and Zip monad
Nils Schweinsberg [Fri, 29 Apr 2011 16:16:56 +0000 (18:16 +0200)]
monad comprehensions: Group and Zip monad

ticket #4370

12 years agoAdd instances for basic types of the new generic deriving mechanism.
Jose Pedro Magalhaes [Fri, 29 Apr 2011 06:46:08 +0000 (08:46 +0200)]
Add instances for basic types of the new generic deriving mechanism.

13 years agoMerge branch 'master' of http://darcs.haskell.org/packages/base into ghc-generics
Jose Pedro Magalhaes [Wed, 27 Apr 2011 11:21:02 +0000 (13:21 +0200)]
Merge branch 'master' of darcs.haskell.org/packages/base into ghc-generics

13 years agoRemove a redundant -fno-warn-unused-binds flag
Ian Lynagh [Sun, 24 Apr 2011 21:04:10 +0000 (22:04 +0100)]
Remove a redundant -fno-warn-unused-binds flag

13 years agoRemove an unnecessary -fno-warn-unused-binds flag
Ian Lynagh [Sun, 24 Apr 2011 19:32:07 +0000 (20:32 +0100)]
Remove an unnecessary -fno-warn-unused-binds flag

13 years agoFor GHC, implement the Typeable.hs macros using standalone deriving
Ian Lynagh [Sun, 24 Apr 2011 18:16:52 +0000 (19:16 +0100)]
For GHC, implement the Typeable.hs macros using standalone deriving

As well as being more pleasant, this fixes #1841:
    Data.Typeable: Instances of basic types don't provide qualified
    strings to mkTyCon

13 years agoFix build on 64bit machines
Ian Lynagh [Fri, 22 Apr 2011 17:42:23 +0000 (18:42 +0100)]
Fix build on 64bit machines

13 years agoPart of #5122 "Faster conversion between Rational and Double/Float" fix
Ian Lynagh [Fri, 22 Apr 2011 14:24:21 +0000 (15:24 +0100)]
Part of #5122 "Faster conversion between Rational and Double/Float" fix

From daniel.is.fischer.

13 years agoUpdate comment on fmapDefault to note that it only works for Traversable instances...
Brent Yorgey [Fri, 15 Apr 2011 19:22:54 +0000 (15:22 -0400)]
Update comment on fmapDefault to note that it only works for Traversable instances with a given definition of traversable, and NOT for instances with only sequenceA given.

13 years agoImprove docs for GHC.IO.FD.openFile
Simon Marlow [Fri, 1 Apr 2011 11:15:50 +0000 (12:15 +0100)]
Improve docs for GHC.IO.FD.openFile

13 years agoInitial commit for Pedro's generic-default mechanism
simonpj [Tue, 12 Apr 2011 16:48:42 +0000 (17:48 +0100)]
Initial commit for Pedro's generic-default mechanism

13 years agoUpdate source repo location to be the git repo in .cabal file
Ian Lynagh [Fri, 8 Apr 2011 10:22:28 +0000 (11:22 +0100)]
Update source repo location to be the git repo in .cabal file