We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Ord (Tree a)
1 parent fd8cf8a commit e3253fcCopy full SHA for e3253fc
containers/src/Data/Tree.hs
@@ -97,14 +97,15 @@ data Tree a = Node {
97
}
98
#ifdef __GLASGOW_HASKELL__
99
deriving ( Eq
100
+ , Ord -- ^ @since 0.6.5
101
, Read
102
, Show
103
, Data
104
, Generic -- ^ @since 0.5.8
105
, Generic1 -- ^ @since 0.5.8
106
)
107
#else
- deriving (Eq, Read, Show)
108
+ deriving (Eq, Ord, Read, Show)
109
#endif
110
111
-- | This type synonym exists primarily for historical
0 commit comments