If I want to do the following:
getCH[pts_List] := Module[{t}, t = ConvexHull[pts]; Map[Part[pts, #] &, t]];
or
Map[Function[{x}, Part[#, x]], ConvexHull[#]]&
What are other ways to write this? And how do you normally do for speed and efficiency?
Edit
BTW, I am asking this in a generic way, not for this particular problem. I sometimes feel the lack of brain power to think in terms of functional programming in mma. Just want to expand my arsenal with various other ways to write function compositions and learn the analysis of their complexity/efficiency. So please add similar problems.