Method: DateTime.civil
- Defined in:
- date_core.c
.civil(*args) ⇒ Object
Same as DateTime.new.
7797 7798 7799 7800 7801 |
# File 'date_core.c', line 7797
static VALUE
datetime_s_civil(int argc, VALUE *argv, VALUE klass)
{
return datetime_initialize(argc, argv, d_lite_s_alloc_complex(klass));
}
|