<p>Am 23.08.2017 19:40 schrieb "Anthony Walter" <<a href="mailto:sysrpl@gmail.com">sysrpl@gmail.com</a>>:<br>
><br>
> Sven, multiple helpers would be greatly appreciated, especially considering everyone wants to add their own helpers for types like string.</p>
<p>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).</p>
<p>=== code begin ===</p>
<p>type<br>
  TMyStringHelper = type helper(TStringHelper) for String<br>
    // whatever<br>
  end;</p>
<p>=== code end ===</p>
<p>Note: Delphi supports inheritance only for class helpers, but FPC supports it also for record and type helpers.</p>
<p>Regards,<br>
Sven</p>