You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Data/StrMap/ST.purs
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,28 +10,27 @@ module Data.StrMap.ST
10
10
, delete
11
11
) where
12
12
13
-
importControl.Monad.Eff (Eff)
14
-
importControl.Monad.ST (ST)
13
+
importControl.Monad.ST (ST, kindRegion)
15
14
importData.Maybe (Maybe(..))
16
15
17
16
-- | A reference to a mutable map
18
17
-- |
19
18
-- | The first type parameter represents the memory region which the map belongs to. The second type parameter defines the type of elements of the mutable array.
20
19
-- |
21
20
-- | The runtime representation of a value of type `STStrMap h a` is the same as that of `StrMap a`, except that mutation is allowed.
0 commit comments