Home
Random
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:Sandbox/Lemondoge/Calc/doc
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<!-- Please place categories where indicated at the bottom of this module and interwikis at Wikidata (see [[Wikipedia:Wikidata]]) --> == Usage == Performs a calculation. <nowiki>{{</nowiki>#invoke:{{BASEPAGENAME}}|''add''|5|8}} === Examples === <code><nowiki>{{#invoke:Sandbox/Lemondoge/Calc|add|3|6}}</nowiki></code> returns {{#invoke:Sandbox/Lemondoge/Calc|add|3|6}} <code><nowiki>{{#invoke:Sandbox/Lemondoge/Calc|minus|6|3}}</nowiki></code> returns {{#invoke:Sandbox/Lemondoge/Calc|minus|6|3}} <code><nowiki>{{#invoke:Sandbox/Lemondoge/Calc|mod|3|15}}</nowiki></code> returns {{#invoke:Sandbox/Lemondoge/Calc|mod|3|15}} == Error detection == The "times" function (but not the VERY similar "multiplication" function) will return a error like this: "{{#invoke:Sandbox/Lemondoge/Calc|times|0|0|0}}", if the second parameter is 0, unless the third parameter is set to 1. This works by using the code below. <syntaxhighlight lang="lua"> if num2 == 0 and errordetect ~= 1 then return RError("You cannot multiply a number by zero.") else return num1 * num2 end </syntaxhighlight> == Anti-not-a-number mechanism == The "division" function (and it's similar "div" function) will normally return "{{#invoke:Sandbox/Lemondoge/Calc|div|0|0|0}}" if all 3 parameters are set to 0, but if the third parameter is 1, it will return "{{#invoke:Sandbox/Lemondoge/Calc|div|0|0|1}}" instead. This works with the code below: <syntaxhighlight lang="lua"> if num1 == 0 and num2 == 0 and antinotanumber == 1 then return 1 else return num1 / num2 end </syntaxhighlight> <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | | <!-- Categories below this line, please; interwikis at Wikidata --> }}</includeonly>
Summary:
Please note that all contributions to Stockhub may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Stockhub:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Module:Sandbox/Lemondoge/Calc
(
edit
)