Hi Pablo,<div><br></div><div>Have a look at lists module [1]. Maybe it worth to use existing functions?</div><div>---</div><div><br></div><div>1. <a href="http://www.erlang.org/doc/man/lists.html">http://www.erlang.org/doc/man/lists.html</a></div>

<div><br clear="all"><div><div>Best regards,</div><div>Max</div><br></div><br>
<br><br><div class="gmail_quote">On Tue, Dec 18, 2012 at 3:08 PM, Manuel A. Rubio "Bombadil" <span dir="ltr"><<a href="mailto:bombadil@bosqueviejo.net" target="_blank">bombadil@bosqueviejo.net</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Pablo,<br>
<br>
El 2012-12-18 11:54, Pablo Vieytes escribió:<div class="im"><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I guessed Key was bound so I could use for pattern matching. It's<br>
very easy to fix it but I don't know why it doesn't work.<br>
</blockquote>
<br></div>
This doesn't works well because the params are not inside of binding in closures. The params are the interface with the outside world and will be confuse know if a param is a binding or not. By default Erlang hasn't binding in function params.<div class="im">

<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Fixed version:<br>
<br>
delete_key_from_list(Key, StatusList)-><br>
    lists:foldr(<br>
      fun(K, Acc) when K == Key -><br>
      Acc;<br>
 (Another, Acc) -><br>
      [Another|Acc]<br>
      end,<br>
      [],<br>
      StatusList).<br>
</blockquote>
<br></div>
This code could be writted as:<br>
<br>
delete_key_from_list(Key, StatusList)-><br>
    lists:filter(fun(X) -> Key =/= X end, StatusList).<br>
<br>
Regards,<br>
Manuel Rubio.<br>
______________________________<u></u>_________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/<u></u>listinfo/erlang-questions</a><br>
</blockquote></div><br></div>