Method: U::String#center
- Defined in:
- ext/u/rb_u_string_justify.c
#center(width, padding = ' ') ⇒ U::String
131 132 133 134 135 |
# File 'ext/u/rb_u_string_justify.c', line 131
VALUE
rb_u_string_center(int argc, VALUE *argv, VALUE self)
{
return rb_u_string_justify(argc, argv, self, 'c');
}
|