We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3951bf commit 1b3ed0eCopy full SHA for 1b3ed0e
tests/HashMapProperties.hs
@@ -269,10 +269,6 @@ pSubmapInsert k v m = not (HM.member k m) ==> HM.isSubmapOf m (HM.insert k v m)
269
pNotSubmapInsert :: Key -> Int -> HashMap Key Int -> Property
270
pNotSubmapInsert k v m = not (HM.member k m) ==> not (HM.isSubmapOf (HM.insert k v m) m)
271
272
-pSubmapInsertDelete :: Key -> Int -> HashMap Key Int -> Property
273
-pSubmapInsertDelete k v m =
274
- not (HM.member k m) ==> HM.isSubmapOf (HM.delete k (HM.insert k v m)) m
275
-
276
------------------------------------------------------------------------
277
-- ** Combine
278
0 commit comments