[Source]
# File iconv/charset_alias.rb, line 12 def [](key) val = super and val.last end
# File iconv/charset_alias.rb, line 15 def []=(key, val) ary = fetch(key) {return super(key, [self.size, key, val])} and ary << val end
# File iconv/charset_alias.rb, line 22 def each(&block) sort.each(&block) end
# File iconv/charset_alias.rb, line 19 def sort values.sort.collect {|i, *rest| rest} end
[Validate]