Comment #0 by andrej.mitrovich — 2012-01-03T20:59:53Z
Created attachment 1065
newput
import std.array;
void main()
{
Appender!(int[]) args1;
Appender!(int[]) args2;
args1.put([1]); // ok
args1.put(args2); // ng
}
I've made some simple modifications to allow this, see attachment.
Comment #2 by andrej.mitrovich — 2013-02-10T08:59:48Z
Pull in Comment #1 is closed, however this enhancement isn't worth it (there have been no other requests for this by other people), and we can use .data for this.