class Puppet::Pops::Time::Timespan::Format::DaySegment
Public Class Methods
new(padchar, width)
click to toggle source
Calls superclass method
Puppet::Pops::Time::Timespan::Format::ValueSegment::new
# File lib/puppet/pops/time/timespan.rb 417 def initialize(padchar, width) 418 super(padchar, width, 1) 419 end
Public Instance Methods
append_to(bld, ts)
click to toggle source
# File lib/puppet/pops/time/timespan.rb 425 def append_to(bld, ts) 426 append_value(bld, ts.days) 427 end
multiplier()
click to toggle source
# File lib/puppet/pops/time/timespan.rb 421 def multiplier 422 NSECS_PER_DAY 423 end