static bool pcallF_anyFalse(L functions, O... args) { bool flag = false; for (O f : functions) if (isFalse(pcallF(f, args))) flag = true; ret flag; }