Ruby Iconv Functions
EditRocket provides the following information on Iconv functions in the Ruby source code builder.
charset_map - Returns the map from canonical name to system dependent name.
close() - Finishes conversion.
conv" Iconv.conv(to, from, str) - "Document-method: Iconv::conv"
iconv" Iconv.iconv(to, from, *strs) - Shorthand for
iconv" Iconv.iconv(to, from, *strs) - Shorthand for
new" Iconv.new(to, from) - Creates new code converter from a coding-system designated with from to another one designated with to.
open" Iconv.open(to, from) - Equivalent to Iconv.new except that when it is called with a block, it yields with the new instance and closes it, and returns the result which returned from the block.