Is there a way to find information on a record? That is, what fields it contains, etc.?<br><br>That is, if I have a record like this:<br><br>-record(<br>        forumRequest,<br>        {<br>            userName,<br>            password
<br>        }<br>).<br><br>And I have A = #forumRequest(userName = "login", password = "pass").<br><br>I can find out the name of the record by doing element(1, A). Can I find out that "login" is a userName and "pass" is password?
<br>