static S[] allToString_array(O[] c) { if (c == null) null; int n = c.length; S[] l = new S[n]; for i to n: l[i] = str(c[i]); ret l; }