static bool containsSubList(L x, L y) { ret indexOfSubList(x, y) >= 0; } static bool containsSubList(L x, A... y) { ret indexOfSubList(x, y, 0) >= 0; }