# File lib/rhc/core_ext.rb, line 187
  def slice(*args)
    args.inject({}) do |h, k|
      h[k] = self[k] if has_key?(k)
      h
    end
  end