<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Feb 9, 2013 at 2:33 PM, Dmitry Kolesnikov <span dir="ltr"><<a href="mailto:dmkolesnikov@gmail.com" target="_blank">dmkolesnikov@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hello,<div><br></div><div>I am not precisely sure what you mean by saying "Erlang doesn't seem to support this …"</div>
<div>Record is a syntax sugar for tuples, all operations applicable for tuples are also valid for records. </div><div>Keep in-mind that tuple elements are addressable. </div><div><br></div><div><br></div><div><div>-module(rec).</div>
<div><br></div><div>-export([test/0]).</div><div><br></div><div>-record(foo, {a, b, c}).</div><div><br></div><div>test() -></div><div>   V1 = #foo{a="A", b="B", c="C"},</div><div>   io:format("rec ~p~n",     [V1]),</div>
<div>   io:format("rec got ~p~n", [element(#foo.a, V1)]),</div><div>   V2 = setelement(#foo.a, V1, "A+"),</div><div><br></div><div>   io:format("rec ~p~n",     [V2]),</div><div>   io:format("rec got ~p~n", [element(#foo.b, V2)]),</div>
<div>   V3 = setelement(#foo.b, V2, "B+"),</div><div><br></div><div>   io:format("-> ~p~n",     [V3]).</div><span class="HOEnZb"><font color="#888888"><div> </div></font></span></div><span class="HOEnZb"><font color="#888888"><div>
<br></div></font></span></div></blockquote><div><br></div><div style>What I was saying was that you can't do something like</div><div style><br></div><div style>Field = a,</div><div style>V2 = setelement(#foo.Field, V1, "A+")</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><span class="HOEnZb"><font color="#888888"><div></div><div><br></div><div>
- Dmitry</div><div><br></div></font></span><div><br><div><div><div class="h5"><div>On Feb 9, 2013, at 11:40 PM, Jeremy Ong <<a href="mailto:jeremy@quarkgames.com" target="_blank">jeremy@quarkgames.com</a>> wrote:</div>
<br></div></div><blockquote type="cite"><div><div class="h5"><div dir="ltr">Hmm, upon reading more, it seems like all record functionality is implemented in the compiler pass.<div><br></div><div>It seems like the ability to address particular variable named locations in tuples would be desirable. I guess I'll have to use proplists or a dict for now, although it feels like overkill for what I'm doing.</div>

</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Feb 9, 2013 at 1:37 PM, Jeremy Ong <span dir="ltr"><<a href="mailto:jeremy@quarkgames.com" target="_blank">jeremy@quarkgames.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">Suppose I have a record that looks like<div>
<br></div><div>-record(foo, {bucket1, bucket2}).</div><div><br>
</div><div>I may want to pass in an argument specifying what bucket to perform the operation over.</div>
<div><br></div><div>For example,</div><div><br></div><div>Bucket = bucket1,</div><div><br></div><div>then later,</div><div><br></div><div>Use Foo#foo.Bucket for some operations and also modify Bucket with something like</div>


<div><br></div><div>Foo#foo{Bucket = bar}</div><div><br></div><div>Erlang doesn't seem to support this, and I don't see why not? Is there a better way to go about this?</div><div><br>
</div><div>Real World Example,</div><div><br></div><div>If the record stores data about two people playing a game against one another, and one of them disconnects, I want to perform some operations on the disconnected player's data, and notify the other player that the disconnect occurred. Not having this sort of functionality results in some code duplication and messy code (at least, if using records).</div>


</div>
</blockquote></div><br></div></div></div><div class="im">
_______________________________________________<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/listinfo/erlang-questions</a><br>
</div></blockquote></div><br></div></div></blockquote></div><br></div></div>