The Case Against Autodecode

Andrei Alexandrescu via Digitalmars-d digitalmars-d at puremagic.com
Thu May 26 20:27:55 PDT 2016


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


More information about the Digitalmars-d mailing list