repeat

Walter Bright newshound2 at digitalmars.com
Tue Jan 18 01:07:37 PST 2011


Andrei Alexandrescu wrote:
> I want to generalize the functionality in string's repeat and move it 
> outside std.string. There is an obvious semantic clash here. If you say 
> repeat("abc", 3) did you mean one string "abcabcabc" or three strings 
> "abc", "abc", and "abc"?

Just a thought:

     concat(repeat("abc",3))

yields "abcabcabc"

?


More information about the Digitalmars-d mailing list