Toggle menu
15
236
74
27.6K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Created page with "{{Documentation subpage}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see Wikipedia:Wikidata) --> == Purpose == Returns a string based on the mathematical parity of the number. It calculates whether or not a given number is odd or even. == Usage == Copy and paste the template below: <syntaxhighlight lang="wikitext" style="overflow: auto;"> {{Parity | <!-- input value --> | <!-- output i..."
 
(No difference)

Latest revision as of 03:32, 21 February 2025

Purpose

Returns a string based on the mathematical parity of the number. It calculates whether or not a given number is odd or even.

Usage

Copy and paste the template below:

{{Parity | <!-- input value --> | <!-- output if even (optional) --> | <!-- output if odd (optional) --> }}

Examples

  • {{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:

TemplateData

No description.

Template parameters

This template prefers inline formatting of parameters.

ParameterDescriptionTypeStatus
Input value1

The number whose parity is to be determined

Example
0, 1, 2, -46, -57, +6, 6373
Numberrequired
Output if even2

Customised output if the input number is even

Default
even
Unknownoptional
Output if odd3

Customised output if the input number is odd

Default
odd
Unknownoptional