/** rb_ary_times
*
*/
@JRubyMethod(name = "*", required = 1)
public IRubyObject op_times(ThreadContext context, IRubyObject times) {
IRubyObject tmp = times.checkStringType();
if (!tmp.isNil()) return join(context, tmp);
long len = RubyNumeric.num2long(times);
if (len == 0) return new RubyArray(getRuntime(), getMetaClass(), 0);
if (len < 0) throw getRuntime().newArgumentError("negative argument");