method

of2tz

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: XSD::XSDDateTimeImpl
of2tz(offset) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/xsd/datatypes.rb, line 551
  def of2tz(offset)
    diffmin = offset * 24 * 60
    if diffmin.zero?
      'Z'
    else
      ((diffmin < 0) ? '-' : '+') << format('%02d:%02d',
        (diffmin.abs / 60.0).to_i, (diffmin.abs % 60.0).to_i)
    end
  end
Register or log in to add new notes.