Not (SelectionCriterion function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
(No difference)

Revision as of 19:37, 24 June 2011

Create selection expression that is a logical negation

NOT is a member of the 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 (?? refid=srchcol.) that makes use of this selection criterion 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

  %selc = [%(selectionCriterion for itemtype):]  -
           NOT(criterion)

Syntax terms

%selc
A SelectionCriterion object variable to contain the new object instance.
%(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.
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.