tuple tup as a dynamic array.
import std.typecons: tuple; auto tup = tuple("a", "b", "c", "d"); string[4] arr = ["a", "b", "c", "d"]; assert(tup.asDynamicArray() == arr);
See Implementation