svoid closeAll(Iterable l) { if (l == null) ret; for (AutoCloseable c : l) pcall { close(c); } } svoid closeAll(AutoCloseable... l) { if (l == null) ret; for (AutoCloseable c : l) pcall { close(c); } }