On 05/26/2016 07:23 PM, H. S. Teoh via Digitalmars-d wrote:
> Therefore, instead of:
>
> myString.splitter!"abc".joiner!"def".count;
>
> we have to write:
>
> myString.representation
> .splitter!("abc".representation)
> .joiner!("def".representation)
> .count;
No, that's not necessary (or correct). -- Andrei