[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Internally used class for division operations
Source position: fpexprpars.pp line 334
type TFPDivideOperation = class(TMathOperation) |
||
public |
||
procedure Check; override; |
|
Validate the division operation for correctness |
function AsString; override; |
|
Get string representation of division operation |
function NodeType; override; |
|
Get the result type for division operations |
procedure GetNodeValue(); override; |
|
Calculate the result of division operation |
end; |
|
Internally used class for division 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 TFPDivideOperation class implements division operations between two numeric operands, handling division by zero checks and type conversion 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 |