static Steppable combineSteppables_dontDropEnded(Iterable steppables) { L steppablesList = nonNulls(steppables); ret -> { bool change; for (s : steppablesList) change |= s.step(); ret change; }; } static Steppable combineSteppables_dontDropEnded(A... steppables) { ret combineSteppables(asList(steppables)); }