class Hashie::Mash

def reject(&blk)

for which the given block returns false.
Returns a new instance of the class it was called on, containing elements
def reject(&blk)
  self.class.new(super(&blk))
end