Parent

Methods

Hash::Ordered

Public Instance Methods

[](key) click to toggle source
                
# File iconv/charset_alias.rb, line 13
def [](key)
  val = super and val.last
end
[]=(key, val) click to toggle source
                
# File iconv/charset_alias.rb, line 16
def []=(key, val)
  ary = fetch(key) {return super(key, [self.size, key, val])} and
    ary << val
end
each(&block) click to toggle source
                
# File iconv/charset_alias.rb, line 23
def each(&block)
  sort.each(&block)
end
sort() click to toggle source
                
# File iconv/charset_alias.rb, line 20
def sort
  values.sort.collect {|i, *rest| rest}
end
blog comments powered by Disqus