Method: Strptime#source
- Defined in:
- ext/strptime/strptime.c
#source ⇒ String
Returns source format string.
711 712 713 714 715 716 717 718 |
# File 'ext/strptime/strptime.c', line 711 static VALUE strptime_source(VALUE self) { struct strptime_object *tobj; GetStrptimeval(self, tobj); return tobj->fmt; } |