Maximum (NamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{Template:NamedArraylist:Maximum subtitle}}
{{Template:NamedArraylist:Maximum subtitle}}
 
<var>Maximum</var> function returns the name (subscript) of the <var>NamedArraylist</var> item that has the maximum numeric value after the application of a specified function to each item.  The function applied to each <var>NamedArraylist</var> item, which you specify with the required <var class="term">itemFunction</var> argument, must be a method that operates on the item type and returns a <var class="product">User Language</var> [[Intrinsic classes|intrinsic]] datatype (<var>Float</var>, <var>String</var>, <var>Longstring</var>, or <var>Unicode</var>) value.
<var>Maximum</var> returns the name of that item of the <var>NamedArraylist</var> item with the maximum numeric value as returned by a specified function.  The function applied to each <var>NamedArraylist</var> item, which you specify with the required <var class="term">itemFunction</var> argument, must be a method that operates on the item type and returns a <var class="product">User Language</var> [[Intrinsic classes|intrinsic]] datatype (<var>Float</var>, <var>String</var>, or <var>Unicode</var>) value.
 
==Syntax==
==Syntax==
{{Template:NamedArraylist:Maximum syntax}}
{{Template:NamedArraylist:Maximum syntax}}
Line 8: Line 8:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%string</th>
<tr><th>%string</th>
<td>A string variable to contain the subscript name of the item in the indicated <var>NamedArraylist</var> that has the maximum value after the argument function has been applied.</td></tr>
<td>A string variable to contain the name of the item in the indicated <var>NamedArraylist</var> that has the maximum value as returned by the argument function.</td></tr>
<tr><th>nal</th>
<tr><th>nal</th>
<td>A <var>NamedArraylist</var> object. </td></tr>
<td>A <var>NamedArraylist</var> object. </td></tr>
<tr><th>itemFunction</th>
<tr><th>itemFunction</th>
<td>A method value (a method name literal, a method variable, or even a method that returns a method value) of the method that operates on objects of the type specified on the <var class="term">nal</var> declaration and that returns a numeric or string value.
<td>A method value (a method name literal, a method variable, or even a method that returns a method value) of the method that operates on objects of the type specified on the <var class="term">nal</var> declaration and that returns an intrinsic value.
<p>As of <var class="product">Sirius Mods</var> Version 7.6, the special identity function, <var>This</var>, is the default <var class="term">itemFunction</var> value for the <var>Maximum</var> and <var>Minimum</var> methods. See [[Collections#Using the This function as the Maximum parameter|"Using the This function as the Maximum parameter"]].</p></td></tr>
<p>As of <var class="product">Sirius Mods</var> Version 7.6, the special identity function, <var>This</var>, is the default <var class="term">itemFunction</var> value for the <var>Maximum</var> and <var>Minimum</var> methods. See [[Collections#Using the This function as the Maximum parameter|"Using the This function as the Maximum parameter"]].</p></td></tr>
</table>
</table>
 
==Usage notes==
==Usage notes==
<ul><li>If the function applied by <var>Maximum</var> returns string values, <var>Maximum</var> uses the decimal-equivalent value of the character bytes and determines the number of the item that has the greatest value.  Lowercase letters are first ranked alphabetically; then uppercase letters, also ranked alphabetically; finally followed by the numbers; that is: <code>'a'..'z','A'..'Z',0..9</code>.
<ul><li>If the function applied by <var>Maximum</var> returns string values, <var>Maximum</var> uses the decimal-equivalent value of the character bytes and determines the number of the item that has the greatest value.  Lowercase letters are first ranked alphabetically; then uppercase letters, also ranked alphabetically; finally followed by the numbers; that is: <code>'a'..'z','A'..'Z',0..9</code>.
<li>If two or more <var>NamedArraylist</var> items have equal, maximum, values, <var>Maximum</var> returns the position of the item that appears closest to the beginning of the <var>NamedArraylist</var>.
<li>If the values returned by <var class="term">itemFunction</var> for two or more <var>NamedArraylist</var> items are equal, maximum, values, <var>Maximum</var> returns the name of that item which is closest to the beginning of the <var>NamedArraylist</var>.
<li>The parameter for <var>Maximum</var> is a method value, not a <var class="product">User Language</var> expression. That is, you cannot provide a function that itself has an argument (say, <var>[[ToIntegerPower and ToPower (Float functions)|ToIntegerPower(2)]]</var>) as the <var>Maximum</var> parameter.  The [[Maximum (Arraylist function)|"Maximum/Minimum with local method"]] example shows a way to apply <var>[[ToIntegerPower and ToPower (Float functions)|ToIntegerPower]]</var> with <var>Maximum</var>.
<li>The parameter for <var>Maximum</var> is a method value, not a <var class="product">User Language</var> expression. That is, you cannot provide a function that itself has an argument (say, <var>[[ToIntegerPower and ToPower (Float functions)|ToIntegerPower]]</var>(2)) as the <var>Maximum</var> parameter.  The [[Maximum (Arraylist function)#Maximum and Minimum with local method|"Maximum and Minimum with local method"]] example shows a way to apply <var>[[ToIntegerPower and ToPower (Float functions)|ToIntegerPower]]</var> with <var>Maximum</var>.
<li><var>Maximum</var> is available in <var class="product">[[Sirius Mods|Sirius Mods]]</var> Version 7.3 and later.
<li><var>Maximum</var> is available in <var class="product">[[Sirius Mods|Sirius Mods]]</var> Version 7.3 and later.
</ul>
</ul>
 
==Examples==
==Examples==
<ol><li>The following request uses the special method, <var>This</var>, to find the maximum and minimum items in this familiar <var>NamedArraylist</var>.
<ol><li>The following request uses the special method, <var>This</var>, to find the maximum and minimum items in this familiar <var>NamedArraylist</var>.
For more information about using <var>This</var>, see [[Collections#Using the This function as the Maximum parameter|"Using the This function as the Maximum parameter"]].
For more information about using <var>This</var>, see [[Collections#Using the This function as the Maximum parameter|"Using the This function as the Maximum parameter"]].
 
<p class="code">begin
<p class="code">begin
   %nalist is collection NamedArraylist of longstring
   %nalist is collection NamedArraylist of longstring
Line 36: Line 36:
   %nalist('Pallin') = 'Michael'
   %nalist('Pallin') = 'Michael'
   %nalist('Chapman') = 'Graham'
   %nalist('Chapman') = 'Graham'
 
   [[PrintText statement|printText]] {~} is item {%nalist:maximum(this)}
   [[PrintText statement|printText]] {~} is item {%nalist:maximum(this)}
   PrintText {~} is item {%nalist:minimum(this)}
   PrintText {~} is item {%nalist:minimum(this)}
end
end
</p>
</p>
 
The result is:
The result is:
<p class="output">%nalist:maximum(this) is item Gilliam
<p class="output">%nalist:maximum(this) is item Gilliam
Line 48: Line 48:
<li>For more examples with Maximum and Minimum for collections, see [[Collections#Finding collection maxima and minima, and sorting|"Finding collection maxima and minima, and sorting"]].
<li>For more examples with Maximum and Minimum for collections, see [[Collections#Finding collection maxima and minima, and sorting|"Finding collection maxima and minima, and sorting"]].
</ol>
</ol>
 
==See also==
==See also==
<ul><li>The [[Minimum (NamedArraylist function)|Minimum]] function is the opposite of the Maximum function.</ul>
<ul><li>The [[Minimum (NamedArraylist function)|Minimum]] function is the opposite of the Maximum function.</ul>
{{Template:NamedArraylist:Maximum footer}}
{{Template:NamedArraylist:Maximum footer}}

Revision as of 13:54, 8 August 2012

Name of item with maximum value or maximum value of function applied to items (NamedArraylist class)


Maximum returns the name of that item of the NamedArraylist item with the maximum numeric value as returned by a specified function. The function applied to each NamedArraylist item, which you specify with the required itemFunction argument, must be a method that operates on the item type and returns a User Language intrinsic datatype (Float, String, or Unicode) value.

Syntax

%string = nal:Maximum[( [itemFunction])]

Syntax terms

%string A string variable to contain the name of the item in the indicated NamedArraylist that has the maximum value as returned by the argument function.
nal A NamedArraylist object.
itemFunction A method value (a method name literal, a method variable, or even a method that returns a method value) of the method that operates on objects of the type specified on the nal declaration and that returns an intrinsic value.

As of Sirius Mods Version 7.6, the special identity function, This, is the default itemFunction value for the Maximum and Minimum methods. See "Using the This function as the Maximum parameter".

Usage notes

  • If the function applied by Maximum returns string values, Maximum uses the decimal-equivalent value of the character bytes and determines the number of the item that has the greatest value. Lowercase letters are first ranked alphabetically; then uppercase letters, also ranked alphabetically; finally followed by the numbers; that is: 'a'..'z','A'..'Z',0..9.
  • If the values returned by itemFunction for two or more NamedArraylist items are equal, maximum, values, Maximum returns the name of that item which is closest to the beginning of the NamedArraylist.
  • The parameter for Maximum is a method value, not a User Language expression. That is, you cannot provide a function that itself has an argument (say, ToIntegerPower(2)) as the Maximum parameter. The "Maximum and Minimum with local method" example shows a way to apply ToIntegerPower with Maximum.
  • Maximum is available in Sirius Mods Version 7.3 and later.

Examples

  1. The following request uses the special method, This, to find the maximum and minimum items in this familiar NamedArraylist. For more information about using This, see "Using the This function as the Maximum parameter".

    begin %nalist is collection NamedArraylist of longstring %nalist = new %nalist:useDefault = true %nalist('Idle') = 'Eric' %nalist('Cleese') = 'John' %nalist('Gilliam') = 'Terry' %nalist('Pallin') = 'Michael' %nalist('Chapman') = 'Graham' printText {~} is item {%nalist:maximum(this)} PrintText {~} is item {%nalist:minimum(this)} end

    The result is:

    %nalist:maximum(this) is item Gilliam %nalist:minimum(this) is item Idle

  2. For more examples with Maximum and Minimum for collections, see "Finding collection maxima and minima, and sorting".

See also

  • The Minimum function is the opposite of the Maximum function.