Class: Integer

Inherits:
Object show all
Defined in:
lib/eac_ruby_utils/patches/integer/rjust_zero.rb

Constant Summary collapse

RJUST_ZERO_STRING =
'0'

Instance Method Summary collapse

Instance Method Details

#rjust_zero(size) ⇒ String

Parameters:

Returns:



10
11
12
# File 'lib/eac_ruby_utils/patches/integer/rjust_zero.rb', line 10

def rjust_zero(size)
  to_s.rjust(size, RJUST_ZERO_STRING)
end