# File lib/backports/2.5.0/hash/slice.rb, line 2
  def slice(*keys)
    h = {}
    keys.each { |k| h[k] = self[k] if key?(k) }
    h
  end