Libraryless. Click here for Pure Java version (59L/1K).
static <A> L<A> concatLists(Iterable<A>... lists) { new L<A> l; if (lists != null) for (Iterable<A> list : lists) addAll(l, list); return l; } static <A> L<A> concatLists(Collection<? extends Iterable<A>> lists) { new L<A> l; if (lists != null) for (Iterable<A> list : lists) addAll(l, list); return l; }
download show line numbers debug dex old transpilations
Travelled to 18 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mowyntqkapby, mqqgnosmbjvj, omdjrrnzbjjv, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, whxojlpjdney, xrpafgyirdlv
No comments. add comment