Module: Mongoid::Criteria::Queryable::Extensions::Array
- Defined in:
- lib/mongoid/criteria/queryable/extensions/array.rb
Overview
The array module adds custom behavior for Origin onto the 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.
-
#update_values(&block) ⇒ Array
Update all the values in the hash with the provided block.
Instance Method Details
#__add__(object) ⇒ Object
Combine the two objects using the add strategy.
22 23 24 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 22 def __add__(object) object.__add_from_array__(self) end |
#__array__ ⇒ Array
Return the object as an array.
34 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 34 def __array__; self; end |
#__deep_copy__ ⇒ Array
Makes a deep copy of the array, deep copying every element inside the array.
45 46 47 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 45 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).
58 59 60 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 58 def __evolve_date__ map { |value| value.__evolve_date__ } end |
#__evolve_time__ ⇒ Array<Time>
Evolve the array to an array of times.
84 85 86 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 84 def __evolve_time__ map { |value| value.__evolve_time__ } end |
#__expand_complex__ ⇒ Array
Get the object as expanded.
70 71 72 73 74 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 70 def map do |value| value. end end |
#__intersect__(object) ⇒ Object
Combine the two objects using an intersection strategy.
98 99 100 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 98 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.
111 112 113 114 115 116 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 111 def __sort_option__ multi.inject({}) do |, criteria| .merge!(criteria.__sort_pair__) end end |
#__sort_pair__ ⇒ Hash
Get the array as a sort pair.
126 127 128 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 126 def __sort_pair__ { first => last.to_direction } end |
#update_values(&block) ⇒ Array
Update all the values in the hash with the provided block.
140 141 142 |
# File 'lib/mongoid/criteria/queryable/extensions/array.rb', line 140 def update_values(&block) replace(map(&block)) end |