File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
io-sim/src/Control/Monad/IOSim Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ # Circa 2022.10.19 (pre release)
4
+
5
+ - Added ` Functor ` instance for ` SimResult ` type
6
+
3
7
# Circa 2022.10.03 (pre release)
4
8
5
9
- Added ` Semigroup ` and ` Monoid ` instances for ` STM ` and ` WrappedSTM ` monads
Original file line number Diff line number Diff line change 1
1
{-# LANGUAGE CPP #-}
2
+ {-# LANGUAGE DeriveFunctor #-}
2
3
{-# LANGUAGE DeriveGeneric #-}
3
4
{-# LANGUAGE DerivingStrategies #-}
4
5
{-# LANGUAGE DerivingVia #-}
@@ -668,7 +669,7 @@ data SimResult a
668
669
| MainException ! Time SomeException ! [Labelled ThreadId ]
669
670
| Deadlock ! Time ! [Labelled ThreadId ]
670
671
| Loop
671
- deriving Show
672
+ deriving ( Show , Functor )
672
673
673
674
674
675
type SimTrace a = Trace. Trace (SimResult a ) SimEvent
You can’t perform that action at this time.
0 commit comments