Evaluating the following
func[x_, y_] := x^2 + y^2
listn = {{a, b}, {c, d}, {e, f}};
Map[func[##] &, listn, {1}]
yields
{func[{a, b}], func[{c, d}], func[{e, f}]}
What I want to end up with is
{func[a, b], func[c, d], func[e, f]}
How do I do this?