Difference between revisions of "Template:Max/doc"

From blackwiki
Jump to navigation Jump to search
imported>Waggers
imported>Dragons flight
(rv, that TemplateData is totally broken. Template parameters can include pipes in VE.)
Line 18: Line 18:
 
: <tt><nowiki>{{max|100+10|300+30|200+20}}</nowiki></tt> → {{max|100+10|300+30|200+20}}
 
: <tt><nowiki>{{max|100+10|300+30|200+20}}</nowiki></tt> → {{max|100+10|300+30|200+20}}
  
==Template Data ==
 
<templatedata>{
 
"description": "Evaluates and returns the maximum of a list of numeric values.",
 
"params": {
 
  "1": {
 
    "label": "List of values",
 
    "description": "A pipe-delimited list of numerical values. Example: -7|5|8|2*3|10+1|9",
 
    "type": "string",
 
    "required": true
 
  }
 
}}</templatedata>
 
 
=== See also ===
 
=== See also ===
 
* [[Template:Min]] - for a minimum value, used the same way.
 
* [[Template:Min]] - for a minimum value, used the same way.

Revision as of 22:39, 7 July 2013

Evaluates and returns the maximum of a list of numeric values. The parameters can be numeric expressions that will be evaluated. Empty or missing parameters are ignored.

Usage

Syntax
{{max | value1 | value2 | value3 | value4 | ... }}
Examples
{{max}}
{{max|}}
{{max|-7}} → -7
{{max|-7|}} → -7
{{max|-7|5}} → 5
{{max|-7|5|}} → 5
{{max|-7|5|8}} → 8
{{max|40*41|300+30}} → 1640
{{max|100+10|300+30|200+20}} → 330

See also