Class: String

Inherits:
Object
  • Object
show all
Defined in:
(unknown)

Instance Method Summary collapse

Instance Method Details

#camelize(*args) ⇒ Object

String#camelize



178
179
180
181
182
183
# File 'ext/fast_camelize/fast_camelize.c', line 178

static VALUE string_camelize(int argc, VALUE* argv, VALUE self) {
  VALUE kwargs = Qnil;
  rb_scan_args(argc, argv, "00:", &kwargs);

  return camelize(self, kwargs);
}