_strptime(*args)
public
Parses the given representation of date and time with the given template, and returns a hash of parsed elements.
For example:
Date._strptime('2001-02-03', '%Y-%m-%d')
See also strptime(3) and strftime.
static VALUE
date_s__strptime(int argc, VALUE *argv, VALUE klass)
{
return date_s__strptime_internal(argc, argv, klass, "%F");
}