Class TMyClass
Unit
ok_generic_multiple_constraints
Declaration
type TMyClass = class(TObject)
Description
This item has no description.
Hierarchy
- TObject
- TMyClass
Overview
Methods
| Public | function Call<A;R>(const Arg: A): R; overload; |
| Public | function Call<A;B;R>(const Arg1: A; const Arg2: B): R; overload; |
| Public | procedure Execute<A;B>(const Arg1: A; const Arg2: B); overload; |
Description
Methods
| Public | function Call<A;R>(const Arg: A): R; overload; |
|
Call with two type params separated by semicolon | |
| Public | function Call<A;B;R>(const Arg1: A; const Arg2: B): R; overload; |
|
Call with three type params separated by semicolons | |
| Public | procedure Execute<A;B>(const Arg1: A; const Arg2: B); overload; |
|
Procedure variant | |