haskell-directory.git
2006-07-11 Malcolm.Wallace... make Control.Monad.Instances compilable by nhc98
2006-07-08 LemmihbreakpointCond
2006-07-05 Simon MarlowUNDO: Merge "unrecognized long opt" fix from 6.4.2
2006-07-03 Don StewartAvoid strictness in accumulator for unpackFoldr
2006-07-02 Don StewartDisable unpack/build fusion
2006-07-01 Don StewartImport Data.ByteString.Lazy, improve ByteString Fusion...
2006-06-09 Don StewartWibble in docs for new ForeignPtr functionsn
2006-06-22 Ross Patersoncomments for Applicative and Traversable
2006-06-22 Simon Marlowdefault to NoBuffering on Windows for a read/write...
2006-06-22 Simon Marlowremove dead code
2006-06-22 Simon Marlowclarify and expand docs
2006-06-16 jeanphilippe... Add minView and maxView to Map and Set
2006-06-14 Ross Patersonadd signature for registerDelay
2006-06-13 Ross Patersona few doc comments
2006-06-08 Don StewartOptimised foreign pointer representation, for heap...
2006-06-05 simonpj@microsoft.comAdd the inline function, and many comments
2006-05-25 Ross Patersonsmall intro to exceptions
2006-05-25 Simon Marlowexport breakpoint
2006-05-25 Don StewartMerge in changes from fps head. Highlights:
2006-05-24 Simon Marlowadd a way to ask the IO manager thread to exit
2006-05-20 Don StewartSync with FPS head, including the following patches:
2006-05-18 Ross Patersonhaddock fix
2006-05-18 Ross Patersonsimplify indexing in Data.Sequence
2006-05-18 Simon MarlowMove Eq, Ord, Show instances for ThreadId to GHC.Conc
2006-05-18 Simon MarlowBetter error handling in the IO manager thread
2006-05-18 Simon Marlow#define _REENTRANT 1 (needed to get the right errno...
2006-05-18 Don StewartcopyCString* should be in IO. Spotted by Tomasz Zielonka
2006-05-17 Duncan Couttsadd import Prelude to get dependencies right for Data...
2006-05-17 Don StewartFix negative index handling in splitAt, replicate and...
2006-05-13 Don StewartUse our own realloc. Thus reduction functions (like...
2006-05-12 Don StewartLast two CInt fixes for 64 bit, and bracket writeFile...
2006-05-10 Don StewartSome small optimisations, generalise the type of unfold
2006-05-10 Ross Patersonportable implementation of WordPtr/IntPtr for non-GHC
2006-05-09 Simon Marlowadd WordPtr and IntPtr types to Foreign.Ptr, with assoc...
2006-05-09 Simon Marlowadd CIntPtr, CUIntPtr, CIntMax, CUIntMax types
2006-05-09 Simon Marlowadd GHC.Dynamic
2006-05-09 Don StewartTwo things. #if defined(__GLASGOW_HASKELL__) on INLINE...
2006-05-08 simonpj@microsoftMake length a good consumer
2006-05-08 simonpj@microsoftTrim imports
2006-05-08 simonpj@microsoftMake unsafePerformIO lazy
2006-05-08 Don StewartSync with FPS head.
2006-05-08 Don StewartFix all uses for Int that should be CInt or CSize in...
2006-05-07 Sven PanneFixed import list syntax
2006-05-07 dons@cse.unsw... Faster filterF, filterNotByte
2006-05-07 dons@cse.unsw... Much faster find, findIndex. Hint from sjanssen
2006-05-06 Sven PanneMerge "unrecognized long opt" fix from 6.4.2
2006-05-06 dons@cse.unsw... Sat May 6 13:01:34 EST 2006 Don Stewart <dons@cse...
2006-05-05 dons@cse.unsw... Add array fusion versions of map, filter and foldl
2006-05-04 Ross Patersonfix for non-GHC
2006-05-04 Ross Patersonuse bracket in appendFile (like writeFile)
2006-05-04 Simon MarlowwriteFile: close the file on error
2006-05-03 dons@cse.unsw... Sync with FPS head
2006-05-03 Simon Marlowimprove performance of Integer->String conversion
2006-05-03 Simon Marlowinline withMVar, modifyMVar, modifyMVar_
2006-05-03 Simon MarlowFix string truncating in hGetLine -- it was a pasto...
2006-04-29 Don StewartMerge in Data.ByteString head. Fixes ByteString+cbits...
2006-04-28 Don StewartImport Data.ByteString from fps 0.5.
2006-05-01 Ross Patersonfix previous patch
2006-05-01 Ross Patersonfixes for non-GHC
2006-04-27 Ross Patersonfix imports for mingw32 && !GHC
2006-04-26 Simon MarlowRequireOrder: do not collect unrecognised options after...
2006-04-26 Ashley Yakeleyfix for Haddock 0.7
2006-04-25 Ashley Yakeleyadd Data.Fixed module
2006-04-24 Ross Patersonadd instances
2006-04-11 Ross Patersonadd superclasses to Applicative and Traversable
2006-04-10 Ross Patersonadd Functor and Monad instances for Prelude types
2006-04-07 LemmihGHC.Base.breakpoint
2006-04-07 Simon MarlowTrack the GHC source tree reorganisation
2006-04-06 Simon Marlowin the show instance for Exception, print the type...
2006-04-05 Simon Marlowimplement ForeignEnvPtr, newForeignPtrEnv, addForeignPt...
2006-03-27 Simon Marlowadd forkOnIO :: Int -> IO () -> IO ThreadId
2006-03-23 Simon MarlowRework previous: not a gcc bug after all
2006-03-23 Simon Marlowwork around a gcc 4.1.0 codegen bug in -O2 by forcing...
2006-03-21 Simon Marlowcommit mysteriously missing parts of "runIOFastExit...
2006-03-20 Simon Marlowadd runIOFastExit :: IO a -> IO a
2006-03-16 Simon MarlowFix a broken invariant
2006-03-15 Simon MarlowAdd unsafeSTToIO :: ST s a -> IO a
2006-03-15 jeanphilippe... Added 'alter'
2006-03-15 Ross Patersondeprecate FunctorM in favour of Foldable and Traversable
2006-03-13 Simon MarlowSimplify Eq, Ord, and Show instances for UArray
2006-03-11 jeanphilippe... Oops typo in intSet notMember
2006-03-11 jeanphilippe... IntMap lookup now returns monad instead of Maybe.
2006-03-11 jeanphilippe... Added notMember to Data.IntSet and Data.IntMap
2006-03-09 John Meachamadd Data.Set.notMember and Data.Map.notMember
2006-03-10 Simon MarlowaddToClockTime: handle picoseconds properly
2006-03-03 John Meachammake head/build rule apply to all types, not just Bool.
2006-02-10 Ian LynaghAvoid overflow when normalising clock times
2006-02-10 Ian LynaghYears have 365 days, not 30*365
2006-02-23 Simon Marlowdeclare blkcmp() static
2006-02-09 Ross Patersontypo in comment in Foldable class
2006-02-06 Ross Patersonsimplify fmap
2006-02-06 Ross Patersonupdate ref in comment
2006-02-06 simonpj@microsoftGive -foverlapping-instances to Data.Typeable
2006-02-03 simonpj@microsoft.comAdd -fno-bang-patterns to modules using both bang and...
2006-02-01 Simon MarlowWhen splitting a bucket, keep the contents in the same...
2006-01-26 Simon Marlowadd foldr/build optimisation for take and replicate
2006-01-24 Simon MarlowGenerate PrimopWrappers.hs with Haddock docs
2006-01-19 ross[project @ 2006-01-19 14:47:15 by ross]
2006-01-18 malcolm[project @ 2006-01-18 11:45:47 by malcolm]
2006-01-17 ross[project @ 2006-01-17 09:38:38 by ross]
next