Template:Max/5

From MicrasWiki
< Template:Max
Revision as of 03:01, 21 March 2019 by Hālian (talk | contribs) (Created page with "<noinclude><!-- -============================================================================= - Max/5 - Return maximum of 5 amounts which can include text entries -=========...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

0

Template documentation


The Template:Max/5 returns the maximum number, out of 5 parameters, where some parameters can be ignored as text entries rather than numbers (such as a parameter with "none" or "n/a" or "-").

Usage:    {{max/5 | 1 | 6 | 4 | 7 | 3 }}   → 7
{{max/5 |24|65|(pass)|4|none}} → 65
{{max/5 | -7 |-4 |-1 |-6 | -9 }}   → -1
{{max/5 |  | 34 |   |   | 31 }}   → 34

To set a floor amount, as a minimum result, also pass a specified amount, such as "50" where {{max/5|1|2|3|4|50}} will return at least 50 as the maximum. Otherwise, negative numbers are allowed, to find the highest among negative numbers, when all negative.

Peformance considerations

This template, in turn, uses Template:Max/3 and Template:Max/2 to find the maximum among two groups of 3 and 2 parameters, but it also skips any invalid or text data in the entries, such as "(pass)" or "n/a" or "--" or "none" etc. Hence, only the numeric parameters are compared, not the text words.

The template-expansion depth is kept to a minimum, as 8 nesting levels, by avoiding deeply nested if-else-else-else structures.