Module.delete_attribute

You're seeing just the function delete_attribute, go back to Module module for more information.
Link to this function

delete_attribute(module, key)

View Source

Specs

delete_attribute(module(), atom()) :: term()

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