None of the above are working for me.
s = "string"
arr = [s,s,s,s]
transform = (x -> [x, x*"d"])
chunky = map(transform, arr)
# chunky is now 4 by 2
vec(chunky) # no change
chunky[:] # no change
reshape(chunky, 1, 8) # fails with dimension mismatch
I'm guessing something has changed with Julia since the last comment here but I can't seem to find an updated answer anywhere.