How to get more than one clause from one record ?<div><br></div><div>I just know this one:<br><div>-record(r,{c1 = 1,c2 = 2}).</div><div>#r{c1 = FirstC, c2 = SecondC} = #r{c1 = 1,c2 = 2}.</div></div><div><br></div><div>Then FirstC == 1, SecondC == 2.</div><div><br></div><div>It doesn't looks so well.</div><div>Because we assign the value from left to right.</div><div><br></div><div>Is there any way to write a better-look code?</div>