Question: how can i convert {x=a,y=b} to (a,b) using map?

Hi, how can i convert {x=a,y=b} to (a,b) using map? > f:=x^3-3*x*y+2*y^2-3*x+4*y+3: stpts:= solve({diff(f,x) = 0, diff(f,y) = 0},{x,y}); map2(eval,[x,y],[stpts])[]; [0, -1], [3/4, -7/16] i want (0,-1),(-7/16) instead thanks!
Please Wait...