static L allToSymbol(Collection l) { ifdef SymbolAsString ret allToString(l); endifdef ifndef SymbolAsString L out = emptyList(l); for (CharSequence s : l) out.add(toSymbol(s)); ret out; endifndef }