I have a list of lists and I want to add a prefabricated list using a temporary list in a function. In using a temporary list, when I reach the end of the scope will the data that was pushed back into the superlist be deleted? I'm not sure if it will or not because of how it works and the references in here don't go into detail on a list of lists scenario.
Given the code above, will m_edges have the sublist in there while out of the scope or will it be deleted? (m_edges is passed into the function and will be there outside)