What's the most elegant way to select out objects in an array that are unique with respect to one or more attributes?
These objects are stored in ActiveRecord so using AR's methods would be fine too.
|
1
|
What's the most elegant way to select out objects in an array that are unique with respect to one or more attributes? These objects are stored in ActiveRecord so using AR's methods would be fine too.
|
|||
|
|
|
|
I had originally suggested using the
But if you want the first such object, use
I'm not sure what you're going for here, though. |
|||
|
|
|
If I understand your question correctly, I've tackled this problem using the quasi-hacky approach of comparing the Marshaled objects to determine if any attributes vary. The inject at the end of the following code would be an example:
|
||
|
|
|
|
Now if you can sort on the attribute values this can be done:
That's for a 1-attribute unique, but the same thing can be done w/ lexicographical sort ... |
||
|
|
|
|
Do it on the database level:
|
||
|
|
|
You can use a hash, which contains only one value for each key:
|
||
|
|
|
|
Add the
The implementation:
Note that it returns a new array rather than modifying your current one in place. We haven't written a |
||
|
|
|
|
I like jmah's use of a Hash to enforce uniqueness. Here's a couple more ways to skin that cat:
That's a nice 1-liner, but I suspect this might be a little faster:
|
||
|
|