I have a model that has a column of type Boolean.
It's possible to retrieve "on the fly" (without iterating all the result) the result of a logic calculus?
For example:
data = Model.limit(10)
# I would like to know if each data.column is true
# the result is something to this logic: data[0].column && data[1].column && ...
# ..but there is one manner to do this without iterating?
Using the main conditions: AND, OR, XOR (the conditions are all the same - all AND or all OR ,...).