Module.delete_attribute
You're seeing just the function
delete_attribute
, go back to Module module for more information.
Specs
Deletes the module attribute that matches the given key.
It returns the deleted attribute value (or nil
if nothing was set).
Examples
defmodule MyModule do
Module.put_attribute(__MODULE__, :custom_threshold_for_lib, 10)
Module.delete_attribute(__MODULE__, :custom_threshold_for_lib)
end