Method: Kernel#proc
- Defined in:
- proc.c
#proc {|...| ... } ⇒ Proc
Equivalent to Proc.new.
849 850 851 852 853 |
# File 'proc.c', line 849
static VALUE
f_proc(VALUE _)
{
return proc_new(rb_cProc, FALSE, TRUE);
}
|
Equivalent to Proc.new.
849 850 851 852 853 |
# File 'proc.c', line 849
static VALUE
f_proc(VALUE _)
{
return proc_new(rb_cProc, FALSE, TRUE);
}
|