Helper module to lift Updates.
Update
{ get : a -> b, set : b -> a -> a }
compose : Lifter a b -> Lifter b c -> Lifter a c
run : Lifter a b -> Update b msg -> Update a msg
Alternative to Update.child, but more scalable.
Update.child