Module: Mongoid::Criteria::Queryable::Extensions::Array
- Defined in:
- lib/mongoid/criteria/queryable/extensions/array.rb
Overview
Adds query type-casting behavior to Array class.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#__add__(object) ⇒ Object
Combine the two objects using the add strategy.
-
#__array__ ⇒ Array
Return the object as an array.
-
#__deep_copy__ ⇒ Array
Makes a deep copy of the array, deep copying every element inside the array.
-
#__evolve_date__ ⇒ Array<Time>
Evolve the array into an array of mongo friendly dates.
-
#__evolve_time__ ⇒ Array<Time>
Evolve the array to an array of times.
-
#__expand_complex__ ⇒ Array
Get the object as expanded.
-
#__intersect__(object) ⇒ Object
Combine the two objects using an intersection strategy.
-
#__sort_option__ ⇒ Hash
Gets the array as options in the proper format to pass as MongoDB sort criteria.
-
#__sort_pair__ ⇒ Hash
Get the array as a sort pair.
Instance Method Details
#__add__(object) ⇒ Object
Combine the two objects using the add strategy.
20 21 22 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 20 def __add__(object) object.__add_from_array__(self) end |
#__array__ ⇒ Array
Return the object as an array.
30 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 30 def __array__; self; end |
#__deep_copy__ ⇒ Array
Makes a deep copy of the array, deep copying every element inside the array.
39 40 41 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 39 def __deep_copy__ map { |value| value.__deep_copy__ } end |
#__evolve_date__ ⇒ Array<Time>
Evolve the array into an array of mongo friendly dates. (Times at midnight).
50 51 52 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 50 def __evolve_date__ map { |value| value.__evolve_date__ } end |
#__evolve_time__ ⇒ Array<Time>
Evolve the array to an array of times.
72 73 74 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 72 def __evolve_time__ map { |value| value.__evolve_time__ } end |
#__expand_complex__ ⇒ Array
Get the object as expanded.
60 61 62 63 64 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 60 def map do |value| value. end end |
#__intersect__(object) ⇒ Object
Combine the two objects using an intersection strategy.
84 85 86 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 84 def __intersect__(object) object.__intersect_from_array__(self) end |
#__sort_option__ ⇒ Hash
Gets the array as options in the proper format to pass as MongoDB sort criteria.
95 96 97 98 99 100 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 95 def __sort_option__ multi.inject({}) do |, criteria| .merge!(criteria.__sort_pair__) end end |
#__sort_pair__ ⇒ Hash
Get the array as a sort pair.
108 109 110 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 108 def __sort_pair__ { first => Mongoid::Criteria::Translator.to_direction(last) } end |