= private = protected
to_a()
Always returns an empty array.
nil.to_a #=> []
/* * call-seq: * nil.to_a => [] * * Always returns an empty array. * * nil.to_a #=> [] */ static VALUE nil_to_a(obj) VALUE obj; { return rb_ary_new2(0); }