[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Internally used class for multiplication operations
Source position: fpexprpars.pp line 325
type TFPMultiplyOperation = class(TMathOperation) |
||
public |
||
procedure check; override; |
|
Validate the multiplication operation for correctness |
function AsString; override; |
|
Get string representation of multiplication operation |
procedure GetNodeValue(); override; |
|
Calculate the result of multiplication operation |
end; |
|
Internally used class for multiplication operations |
|
| | | ||
|
Internally used class for mathematical operations in expressions |
|
| | | ||
|
Internally used class for binary operations with left and right operands |
|
| | | ||
|
Class for representing nodes in expression trees |
|
| | | ||
The TFPMultiplyOperation class implements multiplication operation between two numeric operands, handling type conversion and providing multiplication-specific functionality for integers, floats, and currency values.
This class is used internally by the TFPExpressionParser class to construct an AST (Abstract Syntax Tree). There is normally no need for you to use or instantiate this class directly.
|
Class for representing nodes in expression trees |