Skip to content

Instantly share code, notes, and snippets.

@LukaHorvat
Created December 20, 2014 14:48
Show Gist options
  • Save LukaHorvat/11db10da08cd3326d52a to your computer and use it in GitHub Desktop.
Save LukaHorvat/11db10da08cd3326d52a to your computer and use it in GitHub Desktop.
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