ixVectorNot -- Perform a boolean NOT on two query vectors
OnixQueryVectorT ixVectorOr(OnixQueryVectorT Vector1, OnixQueryVectorT Vector2, StatusCodeT *Status)
Vector1 -- Vector of type OnixQueryVectorT
Vector2 -- A second vector of type OnixQueryVectorT.
Status -- A pointer to a value of type StatusCodeT
A vector of type OnixQueryVectorT
ixVectorAnd() is use to perform a boolean OR between two query vectors of type OnixQueryVectorT. The boolean NOT in this case is defined as Vector1 NOT Vector2. The results being all of the records which are in Vector1 which are NOT in Vector2. This function is useful if you are intending on manually processing your queries in addition to or in substitution to Onix's query method ixProcessQuery(). You can see what the results of the boolean NOT are by a call to ixNumHits().