14
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 12 hours ago. based on code collected about 12 hours ago.
Feb 10, 2025 — Feb 10, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
add Functor and Monad instances for Prelude types More... almost 20 years ago
GHC.Base.breakpoint
David Himmelstrup
as Lemmih
More... almost 20 years ago
Track the GHC source tree reorganisation More... almost 20 years ago
in the show instance for Exception, print the type of dynamic exceptions Unfortunately this requires some recursve module hackery to get at the show instance for Typeable. More... almost 20 years ago
implement ForeignEnvPtr, newForeignPtrEnv, addForeignPtrEnv for GHC More... almost 20 years ago
add forkOnIO :: Int -> IO () -> IO ThreadId More... almost 20 years ago
Rework previous: not a gcc bug after all It turns out that we were relying on behaviour that is undefined in C, and undefined behaviour in C means "the compiler can do whatever the hell it likes with your entire program". So avoid that. More... almost 20 years ago
work around a gcc 4.1.0 codegen bug in -O2 by forcing -O1 for GHC.Show See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26824 More... almost 20 years ago
commit mysteriously missing parts of "runIOFastExit" patch More... almost 20 years ago
add runIOFastExit :: IO a -> IO a Similar to runIO, but calls stg_exit() directly to exit, rather than shutdownHaskellAndExit(). Needed for running GHCi in the test suite. More... almost 20 years ago
Fix a broken invariant Patch from #694, for the problem "empty is an identity for <> and $$" is currently broken by eg. isEmpty (empty<>empty)" More... almost 20 years ago
Add unsafeSTToIO :: ST s a -> IO a Implementation for Hugs is missing, but should be easy. We need this for the forthcoming nested data parallelism implementation. More... almost 20 years ago
Added 'alter' Added 'alter :: (Maybe a -> Maybe a) -> k -> Map k a -> Map k a' to IntMap and Map This addresses ticket #665 More... almost 20 years ago
deprecate FunctorM in favour of Foldable and Traversable as discussed on the libraries list. More... almost 20 years ago
Simplify Eq, Ord, and Show instances for UArray The Eq, Ord, and Show instances of UArray were written out longhand with one instance per element type. It is possible to condense these into a single instance for each class, at the expense of using more extensions (non-std context on instance declaration). More... almost 20 years ago
Oops typo in intSet notMember More... almost 20 years ago
IntMap lookup now returns monad instead of Maybe. More... almost 20 years ago
Added notMember to Data.IntSet and Data.IntMap More... almost 20 years ago
addToClockTime: handle picoseconds properly fixes #588 More... almost 20 years ago
add Data.Set.notMember and Data.Map.notMember More... almost 20 years ago
make head/build rule apply to all types, not just Bool. More... almost 20 years ago
declare blkcmp() static More... almost 20 years ago
Avoid overflow when normalising clock times
igloo
as Ian Lynagh
More... about 20 years ago
Years have 365 days, not 30*365
igloo
as Ian Lynagh
More... about 20 years ago
typo in comment in Foldable class More... about 20 years ago
Give -foverlapping-instances to Data.Typeable More... about 20 years ago
update ref in comment More... about 20 years ago
simplify fmap More... about 20 years ago
Add -fno-bang-patterns to modules using both bang and glasgow-exts More... about 20 years ago
When splitting a bucket, keep the contents in the same order To retain the property that multiple inserts shadow each other (see ticket #661, test hash001) More... about 20 years ago