IEx.Helpers.reset_break
You're seeing just the function
reset_break
, go back to IEx.Helpers module for more information.
Sets the number of pending stops in the breakpoint
with the given id
to zero.
Returns :ok
if there is such breakpoint ID. :not_found
otherwise.
Note the module remains "instrumented" on reset. If you would
like to effectively remove all breakpoints and instrumentation
code from a module, use remove_breaks/1
instead.
Sets the number of pending stops in the given module, function and arity to zero.
If the module is not instrumented or if the given function
does not have a breakpoint, it is a no-op and it returns
:not_found
. Otherwise it returns :ok
.
Note the module remains "instrumented" on reset. If you would
like to effectively remove all breakpoints and instrumentation
code from a module, use remove_breaks/1
instead.