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.
1 parent 6fb86d4 commit 94d644bCopy full SHA for 94d644b
hls-graph/src/Development/IDE/Graph/Internal/Key.hs
@@ -32,6 +32,7 @@ module Development.IDE.Graph.Internal.Key
32
, deleteKeySet
33
, differenceKeySet
34
, unionKyeSet
35
+ , notMemberKeySet
36
) where
37
38
--import Control.Monad.IO.Class ()
@@ -131,6 +132,9 @@ insertKeySet = coerce IS.insert
131
132
memberKeySet :: Key -> KeySet -> Bool
133
memberKeySet = coerce IS.member
134
135
+notMemberKeySet :: Key -> KeySet -> Bool
136
+notMemberKeySet = coerce IS.notMember
137
+
138
toListKeySet :: KeySet -> [Key]
139
toListKeySet = coerce IS.toList
140
0 commit comments