> because strings aren't mutable. char[]'s on the other hand are, so you > could just change temp_'s type to > import std.traits; > Unqual!(typeof(StringT.init[0]))[] temp_; > or something like that. Thanks Ellery.