Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- (unknown)
Instance Method Summary collapse
-
#camelize(*args) ⇒ Object
String#camelize.
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);
}
|