Not (SelectionCriterion function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
(19 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<span style="font-size:120%; color:black"><b>Create selection expression that is a logical negation</b></span>
{{Template:SelectionCriterion:Not subtitle}}
[[Category:SelectionCriterion methods|NOT constructor]]
[[Category:System methods]]
<!--DPL?? Category:SelectionCriterion methods|NOT constructor: Create selection expression that is a logical negation-->
<!--DPL?? Category:System methods|NOT (SelectionCriterion constructor): Create selection expression that is a logical negation-->
<p>
NOT is a member of the [[SelectionCriterion class]].
</p>


This shared method creates a new SelectionCriterion object
This [[Notation conventions for methods#Shared members|shared method]] creates a new <var>SelectionCriterion</var> object
that is a logical negation of its SelectionCriterion parameter.
that is a logical negation of its <var>SelectionCriterion</var> parameter.
A NOT criterion returns true for a collection item if NOT's
A <var>Not</var> criterion returns true for a collection item if <var>Not</var>'s
component SelectionCriterion expression is false for the item;
component <var>SelectionCriterion</var> expression is false for the item;
otherwise it returns true.
otherwise it returns true.


The collection searching method ([[??]] refid=srchcol.)
The [[Collections#Searching a collection|collection searching method]]
that makes use of this selection criterion specifies:
that makes use of this <var>SelectionCriterion</var> specifies:
<ul>
<ul>
<li>Whether to return the first item or item number or all items that satisfy the
<li>Whether to return the first item or item number or all items that satisfy the
Line 21: Line 14:
<li>Where in the collection to begin searching.
<li>Where in the collection to begin searching.
</ul>
</ul>
===Syntax===
==Syntax==
  %selc = [%(selectionCriterion for itemtype):]  -
{{Template:SelectionCriterion:Not syntax}}
            NOT(criterion)
 
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt><i>%selc</i>
<tr><th>%selectionCriterion</th>
<dd>A SelectionCriterion object variable to contain the new object instance.
<td>A <var>SelectionCriterion</var> object variable to contain the new object instance. </td></tr>
<dt><i>%(selectionCriterion for itemtype)</i>
<tr><th nowrap="true"><var>[%(SelectionCriterion For </var>itemType<var>):]</var>
<dd>This optional specification of the class and collection item type
<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>
in parentheses indicates
<tr><th>selectionCriterion</th>
that the method is shared and does not operate on a specific instance.
<td>A SelectionCriterion object. </td></tr>
<dt><i>criterion</i>
</table>
<dd>A SelectionCriterion object.
 
==Usage Notes==
<ul>
<li>As described in [[Object variables#Virtual Constructor methods|"Virtual Constructor methods"]], <var>Not</var> 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 <var>Null</var>:
<p class="code">%selCrit = Not(<i>criterion</i>)


</dl>
%selCrit = %(SelectionCriterion for float):Not(<i>criterion</i>)
===Usage Notes===


The NOT constructor is '''never''' necessary, and anything you can
%selCrit = %selCrit:Not(<i>criterion</i>)
do with the NOT can be done (probably more clearly) otherwise.
</p>
'''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 <var>SelectionCriterion</var> object variable's [[SelectionCriterion class#Declaring a SelectionCriterion object variable|declaration]].
<li>The <var>Not</var> constructor is '''never''' necessary, and anything you can
do with the <var>Not</var> can be done (probably more clearly) otherwise.
For example, the following two criteria are identical:
For example, the following two criteria are identical:
<pre>
<p class="code">
    %sel = not(gt(this(90))
%sel = not(gt(this(90))


    %sel = le(this(90))
%sel = le(this(90))
</pre>
</p>


And the following two criteria are identical:
And the following two criteria are identical:
<pre>
<p class="code">%sel = not(or(lt(this,70), ge(this,95)))
    %sel = not(or(lt(this,70), ge(this,95)))


    %sel = and(ge(this,70), lt(this,95))
%sel = and(ge(this,70), lt(this,95))
</pre>
</p>


And these criteria are identical:
And these criteria are identical:
<pre>
<p class="code">%sel = not(true)
    %sel = not(true)
 
%sel = false
</p>
 
Internally, <var>Not</var>s are always converted to the inverse of the parameter criterion.
</ul>


    %sel = false
==See also==
</pre>
{{Template:SelectionCriterion:Not footer}}


Internally, NOTs are always converted to the inverse of the parameter criterion.
[[Category:SelectionCriterion methods]]

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