module Charwidth::String

Public Instance Methods

normalize_charwidth(options = {}) click to toggle source
# File lib/charwidth/string.rb, line 4
def normalize_charwidth(options = {})
  dup.normalize_charwidth!(options)
end
normalize_charwidth!(options = {}) click to toggle source
# File lib/charwidth/string.rb, line 8
def normalize_charwidth!(options = {})
  Charwidth.normalize!(self, options)
end
to_full_width() click to toggle source
# File lib/charwidth/string.rb, line 12
def to_full_width
  dup.to_full_width!
end
to_full_width!() click to toggle source
# File lib/charwidth/string.rb, line 16
def to_full_width!
  Charwidth.to_full_width!(self)
end