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