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.
4030 4031 4032 4033 4034 |
# File 'object.c', line 4030
static VALUE
f_sprintf(int c, const VALUE *v, VALUE _)
{
return rb_f_sprintf(c, v);
}
|