static bool callF_returnTrueIfNoException(O f, O... args) { try { callF(f, args); true; } catch print e { false; } }