Method: Date#italy
- Defined in:
- date_core.c
#italy ⇒ Object
Equivalent to Date#new_start with argument Date::ITALY.
5848 5849 5850 5851 5852 |
# File 'date_core.c', line 5848
static VALUE
d_lite_italy(VALUE self)
{
return dup_obj_with_new_start(self, ITALY);
}
|