Name var_index_record
Definition var_index_record:overloaded.
var_index_record(i:var(int),R:var(record(T1:type)),TR:type):var(TR).
var_index_record(i:var(int),R:var(record(T1:type,T2:type)),TR:type):var(TR).
etc.
Defined in types.l
Implementation icode
Description The compiler converts calls to the field selection operator -> with variable operands into calls to this function; it need not be called directly. It returns the i'th field of record R which has type TR.