class Zakuro::Gihou::Cycle::Remainder
Remainder
時刻情報(大余小余)
Constants
- MINUTE
@return [Integer] 分(1分=6秒)
Public Class Methods
new(day: -1, minute: -1, second: -1, total: -1)
click to toggle source
初期化
@param [Integer] day 大余(“日”に相当) @param [Integer] minute 小余(“分”に相当) @param [Integer] second 秒 @param [Integer] total 繰り上げなしの小余
Calls superclass method
Zakuro::Calculation::Cycle::AbstractRemainder::new
# File lib/zakuro/version/gihou/cycle/remainder.rb, line 28 def initialize(day: -1, minute: -1, second: -1, total: -1) super(base_day: Const::Number::Cycle::DAY, base_mitune: MINUTE, day: day, minute: minute, second: second, total: total) end