Template:Parity/doc
Appearance
This is a documentation subpage for Template:Parity. It may contain usage information, categories and other content that is not part of the original template page. |
Purpose
[edit]Returns a string based on the mathematical parity of the number. It calculates whether or not a given number is odd or even.
Usage
[edit]Copy and paste the template below:
{{Parity | <!-- input value --> | <!-- output if even (optional) --> | <!-- output if odd (optional) --> }}
Examples
[edit]{{Parity|4}}
→ even{{Parity|9}}
→ odd{{Parity|-15}}
→ odd{{Parity|4|foo|bar}}
→ foo{{Parity|9|foo|bar}}
→ bar{{Parity|-15|foo|bar}}
→ bar
An error message is produced if no input value or a non-integral input value is supplied:
{{Parity}}
→ No integral value supplied.{{Parity|Wikipedia}}
→ Parity is defined only for integral values.{{Parity|5.6}}
→ Parity is defined only for integral values.
TemplateData
[edit]No description.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Input value | 1 | The number whose parity is to be determined
| Number | required |
Output if even | 2 | Customised output if the input number is even
| Unknown | optional |
Output if odd | 3 | Customised output if the input number is odd
| Unknown | optional |