Method: When::Coordinates::LeapSeconds#divmod
- Defined in:
- lib/when_exe/coordinates.rb
#divmod(other) ⇒ When::Coordinates::LeapSeconds
商と剰余
1213 1214 1215 1216 |
# File 'lib/when_exe/coordinates.rb', line 1213 def divmod(other) div, mod = @trunk.divmod(other) return div, self.class.new(mod, @branch, @second) end |