String(p1)
Converts arg to a String by calling its to_s method.
String(self) #=> "main" String(self.class) #=> "Object" String(123456) #=> "123456"
static VALUE rb_f_string(VALUE obj, VALUE arg) { return rb_String(arg); }