You can unload a package with masked features, and then reload it. It will return priority in the search path:
unloadNamespace("zoo") library("zoo")
In the future, if you want to download a package without allowing it to mask other functions, you can specify its position in the search path with an arbitrary large number:
library("debug", pos = .Machine$integer.max)
source share