InterviewSolution
Saved Bookmarks
| 1. |
Mention What Is The Command Used For Accessing Record Field In Erlang? |
|
Answer» EXPR#Name.FIELD, this command will RETURN the value of the mentioned field while for RETURNING the POSITION of the specified field #Name.Field is used. Expr#Name.Field, this command will return the value of the mentioned field while for returning the position of the specified field #Name.Field is used. |
|