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