method
to_time
v1_9_3_125 -
Show latest stable
- Class:
XMLRPC::DateTime
to_time()public
No documentation available.
# File lib/xmlrpc/datetime.rb, line 113
def to_time
if @year >= 1970
Time.gm(*to_a)
else
nil
end
end