Unit 'fpexprpars' Package
[Overview][Constants][Types][Classes][Procedures and functions][Index] [#fcl]

TFPSubtractOperation

[Properties (by Name)] [Methods (by Name)] [Events (by Name)]

Internally used class for subtraction operations

Declaration

Source position: fpexprpars.pp line 316

type TFPSubtractOperation = class(TMathOperation)

public

  procedure Check; override;

  

Validate the subtraction operation for correctness

  procedure GetNodeValue(); override;

  

Calculate the result of subtraction operation

  function AsString; override;

  

Get string representation of subtraction operation

end;

Inheritance

TFPSubtractOperation

  

Internally used class for subtraction operations

|

TMathOperation

  

Internally used class for mathematical operations in expressions

|

TFPBinaryOperation

  

Internally used class for binary operations with left and right operands

|

TFPExprNode

  

Class for representing nodes in expression trees

|

TObject

Description

The TFPSubtractOperation class implements the subtraction operation between two numeric operands. It extends the binary operation framework to provide subtraction-specific functionality for integers, floats, and currency values.

The operation handles type conversion automatically when operands have different numeric types, promoting the result to the more precise type as needed. The result type follows standard numeric promotion rules.

The subtraction operation computes the difference between the left operand (minuend) and the right operand (subtrahend), returning left - right.

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.

See also

TFPExprNode

  

Class for representing nodes in expression trees


Documentation generated on: Dec 15 2025