I have an array os users called, strangely enough, @users.
Is it possible to search WITHIN this array to further narrow down the results. What I am trying to do is the following
@users.where(:gender => nil)
and end up with a smaller array of users so I can report missing data. is this possible?