<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jun 17, 2014 at 4:21 PM, Roger Lipscombe <span dir="ltr"><<a href="mailto:roger@differentpla.net" target="_blank">roger@differentpla.net</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div id=":1k6" class="a3s" style="overflow:hidden">I'm currently refactoring some code, and I've got something like this:<br>


<br>
handle_foo(#state { type = bar, id = Id }) -> whatever;<br>
handle_foo(#state { type = baz, parent_id = ParentId }) -> whatever.<br>
<br>
...and I'm wondering whether it's considered bad form to access record<br>
fields at the same time as matching them in a function clause. I'm<br>
matching on 'type', and accessing 'id' at the same time, I mean.</div></blockquote></div><br>Not at all! I think this is the more powerful form. Matching on patterns is such an integral concept in functional languages, so exploiting it is good.<br>

<br clear="all"><div><br></div>-- <br>J.
</div></div>