| This class represents in [ NOT ] IN [ LIKE ] [ ALL ] expression.
If any of the values listed are Maps or Collections then they are iterated over to see if a match
is found. For Maps only the key values are checked. If you pass a list then it is iterated over
using a for construct rather than an Iterator since it's much faster.
Note: due to the way that the expression is designed it is POSSIBLE to have a binary expression
in the in list, however at this time that is not supported since it can lead to an ambiguous result,
for example: true IN (true, false) has no sensible meaning.
|