Credo.Execution.get_assign
You're seeing just the function
get_assign
, go back to Credo.Execution module for more information.
Returns the assign with the given name
for the given exec
struct (or return the given default
value).
Credo.Execution.get_assign(exec, "foo")
# => nil
Credo.Execution.get_assign(exec, "foo", 42)
# => 42