Flowdock
method

iso8601_timediv

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: DateTime

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_9_2_180) is shown here.

iso8601_timediv(n) private

No documentation

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

Hide source
# File lib/date/format.rb, line 1289
  def iso8601_timediv(n) # :nodoc:
    strftime('T%T' +
             if n < 1
               ''
             else
               '.%0*d' % [n, (sec_fraction / Rational(1, 10**n)).round]
             end +
             '%:z')
  end
Register or log in to add new notes.