static L indicesOfStartingWithTrim(LS l, S prefix) { new L x; for i over l: if (startsWith(trim(l.get(i)), prefix)) x.add(i); ret x; }