Minimum (Arraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (match syntax diagram to template and fix tags)
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
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.
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 intrinsic
datatype (<var>Float</var>, <var>String</var>, <var>Longstring</var>, or <var>Unicode</var>) value.


The system intrinsic classes are discussed in "[[Intrinsic classes]]".
The system intrinsic classes are discussed in <var>[[Intrinsic classes]]</var>. Local methods are discussed in [[??]] refid=localm..
Local methods are discussed in [[??]] refid=localm..


<var>Minimum</var> is available in ''Sirius Mods'' version 7.3 and later.
==Syntax==
==Syntax==
{{Template:Arraylist:Minimum syntax}}
{{Template:Arraylist:Minimum syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%num</i></th>
<tr><th><i>%number</i></th>
<td>A numeric variable to contain the item number of the item in the indicated <var>Arraylist</var> that has the minimum value after the argument method has been applied. </td></tr>
<td>A numeric variable to return the item number of the item in the indicated <var>Arraylist</var> that has the minimum value after the argument method has been applied. </td></tr>
<tr><th><i><var class="term">al</var></i></th>
<tr><th><i>al</i></th>
<td>An <var>Arraylist</var> object. </td></tr>
<td>An <var>Arraylist</var> object. </td></tr>
<tr><th><i>function</i></th>
<tr><th><i>method</i></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.
<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>
<p class="code">As of ''Sirius Mods'' version 7.6, the special identity function, <tt>This</tt>, is the default ''function'' value for the Maximum and <var>Minimum</var> methods. See "[[Collections#Using the This function as the Maximum parameter|Using the This function as the Maximum parameter]]".</td></tr>
</p>
</table>
</table>
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>If the function applied by <var>Minimum</var> returns string values, <var>Minimum</var>
<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.
uses the decimal-equivalent value of the character bytes and determines
Therefore, lowercase letters are ranked alphabetically and the minimum lowercase letter is <code>'a'</code>; the uppercase letters are ranked alphabetically and the minimum uppercase letter is <code>'A'</code>;
the number of the item that has the lowest value.
<code>'z'</code> ranks lower than all the uppercase letters; and all letters rank lower than any number.
Therefore, lowercase letters are ranked alphabetically and
<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>.
the minimum lowercase letter is "a";
<li>The <var>[[Maximum (Arraylist function)|Maximum]]</var> function is the opposite of the <var>Minimum</var> function.
the uppercase letters are ranked alphabetically and
<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><var>[[ToIntegerPower and ToPower (Float functions)|ToIntegerPower]]</var>(2)</code>) as the <var>Minimum</var> parameter. See "[[Maximum (Arraylist function)#Maximum/Minimum with local method|example of 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.
the minimum uppercase letter is "A";
<li><var>Minimum</var> is available in <var class="product">Sirius Mods</var> version 7.3 and later.
"z" ranks lower than all the uppercase letters;
and all letters rank lower than any number.
<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 [[Maximum (Arraylist function)|Maximum]] function is the opposite of the <var>Minimum</var> function.
<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, <tt>ToIntegerPower(2)</tt>) as the <var>Minimum</var> parameter.
See "[[Maximum (Arraylist function)#Maximum/Minimum with local method|example of Maximum/Minimum with local method]]", which shows a way to apply ToIntegerPower
with the Maximum or <var>Minimum</var> method.
</ul>
</ul>
==Examples==
==Examples==
<ol>
<li>In the following example, <var>Minimum</var> and <var>[[Maximum (Arraylist function)|Maximum]]</var> use the special method, <code>This</code>, which simply returns the item value.  The <var>[[List (Arraylist function)|List]]</var> function simplifies the construction of the <var>Arraylist</var>.
<p class="code">begin
  %alist is collection arraylist of string len 12


In the following example, the <var>Minimum</var> and Maximum methods use the
  %alist = List('broken', 'br4ck', 'brown', 'Box', 'bumped')
special method, <tt>This</tt>, which simply returns the item value.
The [[List (Arraylist function)|List]] function simplifies the construction of the
<var>Arraylist</var>.
<p class="code">b
%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)}
PrintText {~} is {%alist:minimum(this)}
PrintText {~} is {%alist:maximum(this)}


end
end
Line 68: Line 47:
</p>
</p>


As of ''Sirius Mods'' version 7.6, <tt>This</tt> is the default parameter for
As of <var class="product">Sirius Mods</var> version 7.6, <code>This</code> is the default parameter for <var>Minimum</var> and <var>[[Maximum (Arraylist function)|Maximum]]</var>. For more information about using <code>This</code>, see <var>[[Collections#Using the This function as the Maximum parameter|Using the This function as the Maximum parameter]]</var>.
<var>Minimum</var> and Maximum.
</ol>
For more information about using <tt>This</tt>, see [[Collections#Using the This function as the Maximum parameter|Using the This function as the Maximum parameter]].
 
For additional <var>Minimum</var>/Maximum 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]]".
==See also==
==See also==
<ul><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>
{{Template:Arraylist:Minimum footer}}
{{Template:Arraylist:Minimum footer}}

Revision as of 05:46, 30 January 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.

The system intrinsic classes are discussed in Intrinsic classes. Local methods are discussed in ?? refid=localm..

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. Therefore, lowercase letters are ranked alphabetically and the minimum lowercase letter is 'a'; the uppercase letters are ranked alphabetically and the minimum uppercase letter is 'A'; 'z' ranks lower than all the uppercase letters; and all letters rank lower than any number.
  • 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 Maximum function is the opposite of the Minimum function.
  • 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 "example of Maximum/Minimum with local method", 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