Method: Kernel#sprintf
- Defined in:
- object.c
#sprintf(format_string*objects) ⇒ String
Returns the string resulting from formatting objects
into format_string.
For details on format_string, see
Format Specifications.
4005 4006 4007 4008 4009 |
# File 'object.c', line 4005
static VALUE
f_sprintf(int c, const VALUE *v, VALUE _)
{
return rb_f_sprintf(c, v);
}
|