Flowdock
method

dx_muldiv

Importance_0
v1_9_2_180 - Show latest stable - 0 notes - Class: Date
dx_muldiv(m, n) private

No documentation

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

Hide source
# File lib/date/delta.rb, line 262
    def dx_muldiv(m, n)
      case n
      when Numeric
        return self.class.new!(@delta.__send__(m, n))
      else
        l, r = n.coerce(self)
        return l.__send__(m, r)
      end
    end
Register or log in to add new notes.