Evolve the array into an array of mongo friendly dates. (Times at midnight).
Evolve the array to dates.
[ Date.new(2010, 1, 1) ].__evolve_date__
Returns:
The array as times at midnight UTC.
50 51 52
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 50 def __evolve_date__ map { |value| value.__evolve_date__ } end