class String

Public Instance Methods

prepend(other_str) click to toggle source
# File lib/axlsx/util/string.rb, line 3
def prepend(other_str)
  insert(0, other_str)
end