Method: DateTime#to_datetime
- Defined in:
- ext/date/date_core.c
#to_datetime ⇒ self
Returns self.
9103 9104 9105 9106 9107 |
# File 'ext/date/date_core.c', line 9103
static VALUE
datetime_to_datetime(VALUE self)
{
return self;
}
|