# File lib/sass/util.rb, line 639 def extract!(array) out = [] array.reject! do |e| next false unless yield e out << e true end out end