[fpc-pascal] generic proc inference
Mattias Gaertner
nc-gaertnma at netcologne.de
Mon Oct 7 18:42:22 CEST 2019
On Mon, 7 Oct 2019 12:38:51 -0400
Ryan Joseph <genericptr at gmail.com> wrote:
> > On Oct 7, 2019, at 10:19 AM, Mattias Gaertner via fpc-pascal
> > <fpc-pascal at lists.freepascal.org> wrote:
> >
> > Note that in Delphi the "non-generic-wins" rule is per parameter:
> >
> > procedure Run<T>(a:T; b: word);
> > procedure Run<T>(a: word; b: T);
>
> I mean what happens here? The non-generic functions wins right?
>
> procedure Run<T>(a:T; b: word);
> procedure Run<T>(a: word; b: T);
> procedure Run(a: word; b: word);
Only for
Run(word(1),word(2));
Mattias
More information about the fpc-pascal
mailing list