Module.put_attribute

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

put_attribute(module, key, value)

View Source

Specs

put_attribute(module(), atom(), term()) :: :ok

Puts a module attribute with key and value in the given module.

Examples

defmodule MyModule do
  Module.put_attribute(__MODULE__, :custom_threshold_for_lib, 10)
end