Flowdock
method

charset_str

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: XSD::Charset
charset_str(label) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/xsd/charset.rb, line 120
  def Charset.charset_str(label)
    if CharsetMap.respond_to?(:key)
      CharsetMap.key(label.downcase) || 'X_UNKNOWN'
    else
      CharsetMap.index(label.downcase) || 'X_UNKNOWN'
    end
  end
Register or log in to add new notes.