class Puppet::Pops::Time::Timespan::Format::MilliSecondSegment

Public Class Methods

new(padchar, width) click to toggle source
    # File lib/puppet/pops/time/timespan.rb
501 def initialize(padchar, width)
502   super(padchar, width, 3)
503 end

Public Instance Methods

append_to(bld, ts) click to toggle source
    # File lib/puppet/pops/time/timespan.rb
509 def append_to(bld, ts)
510   append_value(bld, use_total? ? ts.total_milliseconds : ts.milliseconds)
511 end
multiplier() click to toggle source
    # File lib/puppet/pops/time/timespan.rb
505 def multiplier
506   NSECS_PER_MSEC
507 end