Method: Kernel#untrace_var
- Defined in:
- eval.c
permalink #untrace_var(symbol[, cmd]) ⇒ Array?
Removes tracing for the specified command on the given global variable and returns nil
. If no command is specified, removes all tracing for that variable and returns an array containing the commands actually removed.
2100 2101 2102 2103 2104 |
# File 'eval.c', line 2100
static VALUE
f_untrace_var(int c, const VALUE *a, VALUE _)
{
return rb_f_untrace_var(c, a);
}
|