System.Generics.Defaults.TComparison.Invoke
C++
virtual int __fastcall Invoke(const T Left, const T Right) = 0 ;
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| function | public | System.Generics.Defaults.hpp | System.Generics.Defaults | TComparison |
Description
Performs a comparison between Left and Right. It returns an integer which depends on how the specified objects compare:
| Return value | Description |
|---|---|
| Result is less than zero (<0) | Left goes before Right. |
| Result is equal to zero (=0) | Both objects are equal order-wise. |
| Result is greater than zero (>0) | Left goes after Right. |