File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 19
19
module Data.Patch.MapWithMove
20
20
( PatchMapWithMove
21
21
( PatchMapWithMove
22
- , -- | Extract the representation of the 'PatchMapWithMove' as a map of
23
- -- 'NodeInfo'.
24
- unPatchMapWithMove
22
+ , unPatchMapWithMove
25
23
, ..
26
24
)
27
25
, patchMapWithMove
@@ -99,6 +97,8 @@ pattern Coerce x <- (coerce -> x)
99
97
100
98
{-# COMPLETE PatchMapWithMove #-}
101
99
pattern PatchMapWithMove :: Map k (NodeInfo k v ) -> PatchMapWithMove k v
100
+ -- | Extract the representation of the 'PatchMapWithMove' as a map of
101
+ -- 'NodeInfo'.
102
102
unPatchMapWithMove :: PatchMapWithMove k v -> Map k (NodeInfo k v )
103
103
pattern PatchMapWithMove { unPatchMapWithMove } = PatchMapWithMove' (PatchMapWithPatchingMove (Coerce unPatchMapWithMove))
104
104
You can’t perform that action at this time.
0 commit comments