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
upsert2: (big->Maybesmall)
->(Maybe small -> big -> big)->Upsert big small
upsert2 get set =let
update f big =case get big ofNothing->
big
Just small ->
set (Just<| f small) big
inTagged{ get = get, set = set, update = update }