Module.put_attribute
You're seeing just the function
put_attribute
, go back to Module module for more information.
Specs
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