Move configuration from world to universe
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
module LensHelp
|
||||
( module Control.Lens
|
||||
, (.:~)
|
||||
) where
|
||||
import Control.Lens
|
||||
|
||||
infixr 4 .:~
|
||||
(.:~) :: ASetter s t [a] [a] -> a -> s -> t
|
||||
(.:~) m x = m %~ (x :)
|
||||
Reference in New Issue
Block a user