2. NamedTuple - SheilaOM/TFG GitHub Wiki

The first thing I do is convert the "inside" array into a NamedTuple.

NamedTuple consists of assigning a name to each element of the array. So, instead of calling each field with the positions of the array, I can call it with the name of its field (name, affiliation, email ...). This is much more intuitive both when generating and reading the code.

Link to commit