Minimum (Arraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 1: Line 1:
{{Template:Arraylist:Minimum subtitle}}
{{Template:Arraylist:Minimum subtitle}}


This function returns the number of the <var>Arraylist</var> item that has the minimum numeric value after the application of a specified function to each item.  The function that gets applied to each <var>Arraylist</var> item, which you identify in the argument to <var>Minimum</var>, must be a method that operates on the item type and returns a User Language <var>[[Intrinsic classes|intrinsic datatype]]</var> (<var>Float</var>, <var>String</var>, <var>Longstring</var>, or <var>Unicode</var>) value.
This function returns the number of the <var>Arraylist</var> item that has the minimum numeric value after the application of a specified function to each item.  The function that gets applied to each <var>Arraylist</var> item, which you identify in the argument to <var>Minimum</var>, 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.
 
The system intrinsic classes are discussed in <var>[[Intrinsic classes]]</var>.  Local methods are discussed in [[??]] refid=localm..


==Syntax==
==Syntax==
Line 14: Line 12:
<td>An <var>Arraylist</var> object. </td></tr>
<td>An <var>Arraylist</var> object. </td></tr>
<tr><th>method</th>
<tr><th>method</th>
<td>A method value (a method name literal, a method variable, or even a method that returns a method value) for a method that operates on items of the type specified on the <var class="term">al</var> declaration and that returns a numeric or string value.<p>As of <var class="product">Sirius Mods</var> version 7.6, the special identity function, <code>This</code>, is the default <var class="term">method</var> value for <var>[[Maximum (Arraylist function)|Maximum]]</var> and <var>Minimum</var>. See "[[Collections#Using the This function as the Maximum parameter|Using the This function as the Maximum parameter]]".</p></td></tr>
<td>A method value (a method name literal, a [[Method variables|method variable]], or even a method that returns a method value) for a method that operates on items of the type specified on the <var class="term">al</var> declaration and that returns a numeric or string 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">method</var> value for <var>[[Maximum (Arraylist function)|Maximum]]</var> and <var>Minimum</var>. See [[Collections#Using the This function as the Maximum parameter|"Using the This function as the Maximum parameter"]].</p></td></tr>
</table>
</table>


Line 21: Line 19:
<li>If the function applied by <var>Minimum</var> returns string values, <var>Minimum</var> uses the decimal-equivalent value of the character bytes and determines the number of the item that has the lowest value.  Lowercase letters are first ranked alphabetically, then upper case letters, also ranked alphabetically, followed by the numbers; ie: <code>'a'..'z','A'..'Z',0..9</code>.
<li>If the function applied by <var>Minimum</var> returns string values, <var>Minimum</var> uses the decimal-equivalent value of the character bytes and determines the number of the item that has the lowest value.  Lowercase letters are first ranked alphabetically, then upper case letters, also ranked alphabetically, followed by the numbers; ie: <code>'a'..'z','A'..'Z',0..9</code>.
<li>If one or more <var>Arraylist</var> items have equal, minimum, values, <var>Minimum</var> returns the position of the item that appears closest to the beginning of the <var>Arraylist</var>.
<li>If one or more <var>Arraylist</var> items have equal, minimum, values, <var>Minimum</var> returns the position of the item that appears closest to the beginning of the <var>Arraylist</var>.
<li>The parameter for <var>Minimum</var> is a method value, not a User Language expression.  That is, you cannot provide a function that itself has an argument (say, <code>ToIntegerPower(2)</code>) as the <var>Minimum</var> parameter.  See example of [[Maximum (Arraylist function)#Maximum/Minimum with local method|Maximum/Minimum with local method]], which shows a way to apply <var>[[ToIntegerPower and ToPower (Float functions)|ToIntegerPower]]</var> with the Maximum or <var>Minimum</var> method.
<li>The parameter for <var>Minimum</var> is a method value, not a User Language expression.  That is, you cannot provide a function that itself has an argument (say, <code>ToIntegerPower(2)</code>) as the <var>Minimum</var> parameter.  See the [[Maximum (Arraylist function)#Maximum and Minimum with local method|"Maximum and Minimum with local method"]] example, which shows a way to apply <var>[[ToIntegerPower and ToPower (Float functions)|ToIntegerPower]]</var> with the <var>Maximum</var> or <var>Minimum</var> method.
<li><var>Minimum</var> is available in <var class="product">Sirius Mods</var> version 7.3 and later.
<li><var>Minimum</var> is available in <var class="product">Sirius Mods</var> version 7.3 and later.
</ul>
</ul>
Line 44: Line 42:
</p>
</p>


As of <var class="product">Sirius Mods</var> version 7.6, This is the default parameter for <var>Minimum</var> and <var>[[Maximum (Arraylist function)|Maximum]]</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]]".
As of <var class="product">Sirius Mods</var> version 7.6, <var>This</var> is the default parameter for <var>Minimum</var> and <var>Maximum</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"]].
</ol>
</ol>


==See also==
==See also==
<ul><li>The <var>[[Maximum (Arraylist function)|Maximum]]</var> function is the opposite of the <var>Minimum</var> function.<li>For additional <var>Minimum</var> <var>[[Maximum (Arraylist function)|Maximum]]</var> examples, see the "[[Maximum (Arraylist function)#Examples|Arraylist Maximum function examples]]", and also see "[[Collections#Finding collection maxima and minima, and sorting|Finding collection maxima and minima, and sorting]]".</ul>
<ul><li>The <var>[[Maximum (Arraylist function)|Maximum]]</var> function is the opposite of the <var>Minimum</var> function.<li>For additional <var>Minimum</var> and <var>Maximum</var> examples, see the [[Maximum (Arraylist function)#Examples|Arraylist Maximum function examples]] and [[Collections#Finding collection maxima and minima, and sorting|"Finding collection maxima and minima, and sorting"]].</ul>
{{Template:Arraylist:Minimum footer}}
{{Template:Arraylist:Minimum footer}}

Revision as of 17:29, 22 February 2011

Get number of minimum item (Arraylist class)


This function returns the number of the Arraylist item that has the minimum numeric value after the application of a specified function to each item. The function that gets applied to each Arraylist item, which you identify in the argument to Minimum, must be a method that operates on the item type and returns a User Language intrinsic datatype (Float, String, Longstring, or Unicode) value.

Syntax

%number = al:Minimum[( [itemFunction])]

Syntax terms

%number A numeric variable to return the item number of the item in the indicated Arraylist that has the minimum value after the argument method has been applied.
al An Arraylist object.
method A method value (a method name literal, a method variable, or even a method that returns a method value) for a method that operates on items of the type specified on the al declaration and that returns a numeric or string value.

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

Usage notes

  • If the function applied by Minimum returns string values, Minimum uses the decimal-equivalent value of the character bytes and determines the number of the item that has the lowest value. Lowercase letters are first ranked alphabetically, then upper case letters, also ranked alphabetically, followed by the numbers; ie: 'a'..'z','A'..'Z',0..9.
  • If one or more Arraylist items have equal, minimum, values, Minimum returns the position of the item that appears closest to the beginning of the Arraylist.
  • The parameter for Minimum 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 Minimum parameter. See the "Maximum and Minimum with local method" example, which shows a way to apply ToIntegerPower with the Maximum or Minimum method.
  • Minimum is available in Sirius Mods version 7.3 and later.

Examples

  1. In the following example, Minimum and Maximum use the special method, This, which simply returns the item value. The List function simplifies the construction of the Arraylist.

    begin %alist is collection arraylist of string len 12 %alist = List('broken', 'br4ck', 'brown', 'Box', 'bumped') PrintText {~} is {%alist:minimum(this)} PrintText {~} is {%alist:maximum(this)} end

    The result is:

    %alist:minimum(this) is 1 %alist:maximum(this) is 4

    As of Sirius Mods version 7.6, This is the default parameter for Minimum and Maximum. For more information about using This, see "Using the This function as the Maximum parameter".

See also