I currently use MapThread[f, {{a1, a2}, {b1, b2}] for obtaining { f[a1, b1], f[a2, b2] }.
Is there a version (or alternative) for obtaining { f[a1, b1, c], f[a2, b2, c] }?
Basically I'd like to add a fixed option c (like c1 -> c11) to each invocation of f. How can it be done?