Am 23.08.2017 19:40 schrieb "Anthony Walter" <sys...@gmail.com>: > > Sven, multiple helpers would be greatly appreciated, especially considering everyone wants to add their own helpers for types like string.
At least in FPC modes they can use inheritance to solve this (see below) or by putting their units after the SysUtils unit (at least if they don't want/need the helper provided in the SysUtils unit). === code begin === type TMyStringHelper = type helper(TStringHelper) for String // whatever end; === code end === Note: Delphi supports inheritance only for class helpers, but FPC supports it also for record and type helpers. Regards, Sven
_______________________________________________ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal