rfc3339(*args)
public
This method is equivalent to strftime(â%FT%Tâ). The optional
argument n is length of fractional seconds.
For example:
DateTime.parse('2001-02-03T04:05:06.123456789+07:00').rfc3339(9)
static VALUE
dt_lite_rfc3339(int argc, VALUE *argv, VALUE self)
{
return dt_lite_iso8601(argc, argv, self);
}