paa(Funs) -> fun(X) -> [ Fun(X) || Fun <- Funs] end.<br><br>??<br><br><br><div class="gmail_quote">2009/3/10 Franco Milicchio <span dir="ltr"><<a href="mailto:franco.milicchio@gmail.com">franco.milicchio@gmail.com</a>></span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
On Mar 10, 2009, at 4:24pm, Rob Charlton wrote:<br>
<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Is this what you are after?<br>
<br>
paa(A) -><br>
  fun(L) -><br>
          lists:map(fun(F)-><br>
                            F(A)<br>
                    end, L)<br>
  end.<br>
<br>
7> G = test:paa(42).<br>
#Fun<test.0.118673008><br>
8> G([fun math:sin/1, fun math:cos/1, fun math:tan/1]).<br>
[-0.916522,-0.399985,2.29139]<br>
<br>
</blockquote>
<br>
<br>
Rob, thanks for your answer!<br>
<br>
Actually, I was looking for the other way around:<br>
<br>
G = test:paa([fun math:sin/1, fun math:cos/1, fun math:tan/1]).<br>
<br>
G(0.5).<br>
<br>
<br>
Thanks!<br><font color="#888888">
<br>
-- <br>
Franco Milicchio <<a href="mailto:franco.milicchio@gmail.com" target="_blank">franco.milicchio@gmail.com</a>><br>
<br>
DIA - Dept. of Computer Science and Engineering<br>
University Roma Tre<br>
<a href="http://plm.dia.uniroma3.it/milicchio/" target="_blank">http://plm.dia.uniroma3.it/milicchio/</a><br>
<br>
</font><br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br></blockquote></div><br>