Module: Gemmy::Patches::ArrayPatch::InstanceMethods::NonUniq
- Defined in:
- lib/gemmy/patches/array_patch.rb
Instance Method Summary collapse
-
#nonuniq ⇒ Object
facets.
Instance Method Details
#nonuniq ⇒ Object
facets
214 215 216 217 218 219 220 221 222 |
# File 'lib/gemmy/patches/array_patch.rb', line 214 def nonuniq h1 = {} h2 = {} each {|i| h2[i] = true if h1[i] h1[i] = true } h2.keys end |