add stub |
Filled in this node page. |
||
Line 4: | Line 4: | ||
|Inputs= | |Inputs= | ||
[ | [ | ||
{"Name":"", "Type":"Dummy"}, | {"Name":"A", "Type":"Dummy"}, | ||
{"Name":"", "Type":"Dummy"} | {"Name":"B", "Type":"Dummy"} | ||
] | ] | ||
|Outputs= | |Outputs= | ||
[ | [ | ||
{"Name":"", "Type":"Dummy"} | {"Name":"*", "Type":"Dummy"} | ||
] | ] | ||
|}} | |}} | ||
The '''Add''' node takes in 2 inputs and returns the calculated result. The second input (<code>B</code>) will add to the first input (<code>A</code>). | |||
{{Note|This node is special as it also works with the [[Type:String|String]] type, adding (concatenating) them together.|information}} | |||
== Inputs == | |||
=== A (Pseudo-Generic) === | |||
The value we have. | |||
=== B (Pseudo-Generic) === | |||
The value we want to add. | |||
== Outputs == | |||
=== * (Pseudo-Generic) === | |||
The new result from this operation. | |||
== See Also == | |||
* Wikipedia's definition of [https://en.wikipedia.org/wiki/Addition addition]. | |||
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/arithmetic-operators addition] operator. | |||
[[Category:ProtoFlux:Stubs]] | [[Category:ProtoFlux:Stubs]] | ||
[[Category:ProtoFlux:Operators]] | [[Category:ProtoFlux:Operators]] | ||
[[Category:ProtoFlux:Strings]] | [[Category:ProtoFlux:Strings]] |
Revision as of 06:27, 27 June 2024
+
Operators
The Add node takes in 2 inputs and returns the calculated result. The second input (B
) will add to the first input (A
).
Inputs
A (Pseudo-Generic)
The value we have.
B (Pseudo-Generic)
The value we want to add.
Outputs
* (Pseudo-Generic)
The new result from this operation.