Re: Append to array of strings within array of structs

2015-06-05 Thread Paul via Digitalmars-d-learn
On Friday, 5 June 2015 at 19:46:36 UTC, Adam D. Ruppe wrote: The Rec() can take arguments for the initial values, Yep, I realise that but couldn't figure out the syntax and I'm not sure I like it now that you've told me! :D Thanks once again Paul.

Re: Append to array of strings within array of structs

2015-06-05 Thread Adam D. Ruppe via Digitalmars-d-learn
On Friday, 5 June 2015 at 19:44:29 UTC, Paul wrote: someRecords ~= Rec(); someRecords.fileLines ~= someText; You could condense them this way: someRecords ~= Rec([someText]); The Rec() can take arguments for the initial values, so an array starting with the someText should be cool