Or even more shooter:<div><br></div><div>lists:delete(<span style="background-color:rgb(255,255,255);color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px">Key, StatusList</span>).</div><div><br></div><div><br clear="all">

<div><div>On Tue, Dec 18, 2012 at 3:22 PM, Dmitry Klionsky <span dir="ltr"><<a href="mailto:dm.klionsky@gmail.com" target="_blank">dm.klionsky@gmail.com</a>></span> wrote:</div></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="HOEnZb"><div class="h5">On 12/18/2012 02:08 PM, Manuel A. Rubio "Bombadil" 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ó:<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>
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.<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>
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>
<br></div></div>
Or even more readable as:<br>
<br>
delete_key_from_list(Key, StatusList)-><br>
    [Status || Status <- StatusList, Status =/= Key].<span class="HOEnZb"><font color="#888888"><br>
<br>
-- <br>
Best regards,<br>
Dmitry Klionsky</font></span><div class="HOEnZb"><div class="h5"><br>
<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>
</div></div></blockquote></div><br></div>