Created
December 20, 2014 14:48
-
-
Save LukaHorvat/11db10da08cd3326d52a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
instance Ord StackTraceElement where | |
compare (StackTraceElement x1 y1 z1) (StackTraceElement x2 y2 z2) = | |
compare x1 x2 `mappend` compare y1 y2 `mappend` compare z1 z2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment