Added "instead". |
This is no longer a stub. |
||
Line 40: | Line 40: | ||
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/arithmetic-operators subtraction] operator. | * Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/arithmetic-operators subtraction] operator. | ||
[[Category:ProtoFlux:Operators]] | [[Category:ProtoFlux:Operators]] |
Latest revision as of 16:14, 27 June 2024
-
Operators
The Sub node takes in 2 inputs and returns the calculated result. The second input (B
) will take away anything from the first input (A
).
Inputs
A (Pseudo-Generic)
The value we have.
B (Pseudo-Generic)
The value we want to take away.
Outputs
* (Pseudo-Generic)
The new result from this operation.
See Also
- Wikipedia's definition of subtraction.
- Microsoft's documentation on the subtraction operator.