File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 1919-- strings.
2020--
2121-- Many operations have a average-case complexity of \(O(\log n)\). The
22- -- implementation uses a large base (i.e. 16 ) so in practice these
22+ -- implementation uses a large base (i.e. 32 ) so in practice these
2323-- operations are constant time.
2424module Data.HashMap.Strict
2525 (
Original file line number Diff line number Diff line change @@ -258,10 +258,6 @@ tests =
258258 \ (x :: HMKI ) -> QC. within 1000000 $ HM. isSubmapOf x x
259259 , testProperty " m1 ⊆ m1 ∪ m2" $
260260 \ (x :: HMKI ) y -> QC. within 1000000 $ HM. isSubmapOf x (HM. union x y)
261- , testProperty " m1 ⊈ m2 ⇒ m1 ∪ m2 ⊈ m1" $
262- \ (m1 :: HMKI ) m2 ->
263- QC. within 1000000 $
264- not (HM. isSubmapOf m1 m2) ==> HM. isSubmapOf m1 (HM. union m1 m2)
265261 , testProperty " m1\\ m2 ⊆ m1" $
266262 \ (m1 :: HMKI ) (m2 :: HMKI ) ->
267263 QC. within 1000000 $
You can’t perform that action at this time.
0 commit comments