class Time

Extensions for Ruby's `Time` class.

Public Instance Methods

to_sxp() click to toggle source

Returns the SXP representation of this object.

@return [String]

# File lib/sxp/writer.rb, line 135
def to_sxp
  '#@' << (respond_to?(:xmlschema) ? xmlschema : to_i).to_s
end