Not (SelectionCriterion function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
(3 intermediate revisions by one other user not shown)
Line 21: Line 21:
<tr><th>%selectionCriterion</th>
<tr><th>%selectionCriterion</th>
<td>A <var>SelectionCriterion</var> object variable to contain the new object instance. </td></tr>
<td>A <var>SelectionCriterion</var> object variable to contain the new object instance. </td></tr>
<tr><th nowrap="true"><var>[%(SelectionCriterion For </var>itemType<var>)]</var>
<tr><th nowrap="true"><var>[%(SelectionCriterion For </var>itemType<var>):]</var>
<td>This optional specification of the class in parentheses denotes a [[Notation conventions for methods#Shared methods|virtual constructor]]. See [[#Usage notes|"Usage notes"]], below, for more information about invoking a <var>SelectionCriterion</var> virtual constructor. </td></tr>
<td>This optional specification of the class in parentheses denotes a [[Notation conventions for methods#Constructors|virtual constructor]]. See [[#Usage notes|"Usage notes"]], below, for more information about invoking a <var>SelectionCriterion</var> virtual constructor. </td></tr>
<tr><th>selectionCriterion</th>
<tr><th>selectionCriterion</th>
<td>A SelectionCriterion object. </td></tr>
<td>A SelectionCriterion object. </td></tr>

Latest revision as of 21:13, 30 November 2011

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 A SelectionCriterion object variable to contain the new object instance.
[%(SelectionCriterion For itemType):] This optional specification of the class in parentheses denotes a virtual constructor. See "Usage notes", below, for more information about invoking a SelectionCriterion virtual constructor.
selectionCriterion A SelectionCriterion object.

Usage Notes

  • As described in "Virtual Constructor methods", Not can be invoked with no method object, with an explicit class specification, or with an object variable of the class, even if that object is Null:

    %selCrit = Not(criterion) %selCrit = %(SelectionCriterion for float):Not(criterion) %selCrit = %selCrit:Not(criterion)

    Note: As shown in the second of these above, if you explicitly specify the class name, you must include the item datatype of the collection to be searched, just as on a SelectionCriterion object variable's declaration.

  • 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