# File lib/facets/core/array/delete_unless.rb, line 7
  def delete_unless (&block)
    delete_if { |element| not block.call(element) }
  end