module Tcl::Msgcat::PaddableString
Public Instance Methods
rpad(string, count)
click to toggle source
# File lib/tcl/msgcat/paddable_string.rb, line 5 def rpad(string, count) return self if count < 1 pad = string * count pad + self end