Not (SelectionCriterion function)

From m204wiki
Revision as of 19:54, 24 June 2011 by Admin (talk | contribs)
Jump to navigation Jump to search

Matches an item if it does not meet the criterion (SelectionCriterion class)


This shared method creates a new SelectionCriterion object that is a logical negation of its SelectionCriterion parameter. A Not criterion returns true for a collection item if Not's component SelectionCriterion expression is false for the item; otherwise it returns true.

The collection searching method that makes use of this SelectionCriterion specifies:

  • Whether to return the first item or item number or all items that satisfy the selection criterion.
  • Where in the collection to begin searching.

Syntax

%selectionCriterion = [%(SelectionCriterion For itemType):]Not( selectionCriterion)

Syntax terms

%(selectionCriterion for itemtype)
This optional specification of the class and collection item type in parentheses indicates that the method is shared and does not operate on a specific instance.
%selectionCriterion A SelectionCriterion object variable to contain the new object instance.
criterion A SelectionCriterion object.

Usage Notes

The Not constructor is never necessary, and anything you can do with the Not can be done (probably more clearly) otherwise. For example, the following two criteria are identical:

%sel = not(gt(this(90)) %sel = le(this(90))

And the following two criteria are identical:

%sel = not(or(lt(this,70), ge(this,95))) %sel = and(ge(this,70), lt(this,95))

And these criteria are identical:

%sel = not(true) %sel = false

Internally, Nots are always converted to the inverse of the parameter criterion.

See also