Template:Valid: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Hut 8.5 m Protected Template:Valid: vandal target, no need to edit [edit=sysop:move=sysop] |
meta>Hut 8.5 {{pp-template|small=yes}} |
||
Line 1: | Line 1: | ||
<noinclude> | <noinclude> | ||
{{pp-template|small=yes}} | |||
==Purpose== | ==Purpose== | ||
Determines whether something is valid in a vertain context. Currently only implemented for determining if a number is within the precision that wikipedia expressions can handle. | Determines whether something is valid in a vertain context. Currently only implemented for determining if a number is within the precision that wikipedia expressions can handle. |
Revision as of 19:13, 20 July 2008
Purpose
Determines whether something is valid in a vertain context. Currently only implemented for determining if a number is within the precision that wikipedia expressions can handle.
Returns
true if the argument is valid, false if it is not.
Examples
{{valid|number=A}}
= false (not a number){{valid|number=1234}}
= true{{valid|number=+1234}}
= true{{valid|number=-1234}}
= true{{valid|number=(1234)}}
= true (one pair of parenthesis is allowed){{valid|number=--1234}}
= false (incorrect sign use){{valid|number=1234567890}}
= true{{valid|number=12345678901234567890}}
= false (too large){{valid|number=1.234567890}}
= true{{valid|number=1.2345678901234567890}}
= false (too many decimals)