Look at <a href="http://www.erlang.org/doc/reference_manual/expressions.html#guards">http://www.erlang.org/doc/reference_manual/expressions.html#guards</a><br><br>comma works as andalso - lazy and<br>semicolon works as orelse - lazy or <br>
<br><div class="gmail_quote">On Tue, Dec 9, 2008 at 12:25 PM, Edward Stow <span dir="ltr"><<a href="mailto:ed.stow@gmail.com">ed.stow@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi<br>
<br>
Is this a friendly place to ask very simple questions about Erlang and<br>
functional programming.  I'm learning both at the same time.  For<br>
example I want to search for a value in the nodes of a tree structure.<br>
 The tree is simply nested lists.  For example<br>
<br>
6> tut1:search(a, [b, [a]]).<br>
true<br>
7> tut1:search(a, [b, [c]]).<br>
false<br>
8> tut1:search(a, [ [a], b]).<br>
true<br>
<br>
My implementation is: Is this implementation OK or how else would it<br>
be performed.<br>
<br>
-module(tut1).<br>
-export([search/2]).<br>
<br>
%% Search for an element in tree (nested lists)<br>
<br>
search(_, []) -><br>
    false;<br>
<br>
search(A, [A|_]) -><br>
    true;<br>
<br>
search(A, [H|T]) when list(H), length(H) > 0 -><br>
    [H1|T1] = H,<br>
    search(A, [H1 | [T1 | T]]);<br>
<br>
search (A, [_|T]) -><br>
    search(A, T).<br>
<br>
Question:  I'm not really sure of the semantics of the comma operator<br>
in the function when clause:<br>
search(A, [H|T]) when list(H), length(H) > 0 -><br>
Can somebody point me towards some relevant documentation.<br>
<br>
Thanks<br>
<font color="#888888">--<br>
<br>
Edward Stow<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>
</font></blockquote></div><br><br clear="all"><br>-- <br>--Hynek (Pichi) Vychodil<br>