= private = protected
length()
Returns the number of elements in self. May be zero.
[ 1, 2, 3, 4, 5 ].length #=> 5
static VALUE rb_ary_length(VALUE ary) { long len = RARRAY_LEN(ary); return LONG2NUM(len); }