Module: Tcl::Msgcat::PaddableString

Included in:
String
Defined in:
lib/tcl/msgcat/paddable_string.rb

Instance Method Summary collapse

Instance Method Details

#rpad(string, count) ⇒ Object



5
6
7
8
9
# File 'lib/tcl/msgcat/paddable_string.rb', line 5

def rpad(string, count)
  return self if count < 1
  pad = string * count
  pad + self
end