Favor list comprehension over zip
This commit is contained in:
parent
82ca49321c
commit
34d82d9451
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ isStopped brd = any cStopped . coords
|
||||||
freezeBlock :: Game -> Game
|
freezeBlock :: Game -> Game
|
||||||
freezeBlock g = g & board %~ (M.union blkMap)
|
freezeBlock g = g & board %~ (M.union blkMap)
|
||||||
where blk = g ^. block
|
where blk = g ^. block
|
||||||
blkMap = M.fromList $ zip (blk ^. to coords) (repeat $ blk ^. shape)
|
blkMap = M.fromList $ [(c, blk ^. shape) | c <- blk ^. to coords]
|
||||||
|
|
||||||
-- | Replace block with next block
|
-- | Replace block with next block
|
||||||
nextBlock :: Game -> IO Game
|
nextBlock :: Game -> IO Game
|
||||||
|
|
Loading…
Add table
Reference in a new issue