R/backend_registry.R
unregister_backend.Rd
Removes a backend from the registry. Use with caution as this may break code that depends on the backend.
unregister_backend(name)
Character string, name of backend to remove
Invisibly returns TRUE if backend was removed, FALSE if it wasn't registered
if (FALSE) { # \dontrun{ # Remove a custom backend unregister_backend("my_custom_backend") } # }