--- values_at(key_1, ... , key_n)

    ruby 1.8 feature

    ǻꤵ줿б֤ͤޤб
    ʤ default ͤѤޤ
    indexes  indices ƱǤ

        h = {1=>"a", 2=>"b", 3=>"c"}
        p h.values_at(1,3,4)               # => ["a", "c", nil]

