IEx.Pry.break

You're seeing just the function break, go back to IEx.Pry module for more information.
Link to this function

break(module, function, arity, breaks \\ 1)

View Source

Specs

break(module(), atom(), arity(), non_neg_integer()) ::
  {:ok, id()} | {:error, break_error()}

Sets up a breakpoint on the given module/function/arity.

Link to this function

break(module, function, args, guard, env, breaks \\ 1)

View Source

Specs

break(
  module(),
  atom(),
  [Macro.t()],
  Macro.t(),
  Macro.Env.t(),
  non_neg_integer()
) :: {:ok, id()} | {:error, break_error()}

Sets up a breakpoint on the given module/function/args with the given guard.

It requires an env to be given to make the expansion of the guards.