summaryrefslogtreecommitdiff
path: root/sci-mathematics/agda/files/agda-2.4.2.5-hashtables.patch
blob: 9bba347fa292e92d815eab0ce9721f64e3666e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/full/Agda/Utils/HashMap.hs b/src/full/Agda/Utils/HashMap.hs
index 5e1da8b..7c34548 100644
--- a/src/full/Agda/Utils/HashMap.hs
+++ b/src/full/Agda/Utils/HashMap.hs
@@ -5,7 +5,7 @@ module Agda.Utils.HashMap
   ) where
 
 import Data.Hashable
-import Data.HashMap.Strict as HashMap
+import Data.HashMap.Strict as HashMap (HashMap, filter, lookup, insert, delete, empty, insertWith, toList, adjust, union, unionWith, elems, fromList, (!), keys, map, unions, foldr)
 import qualified Data.Maybe as Maybe
 
 -- | Like 'Data.Map.Strict.mapMaybe'.