add an item about when to pass reference or move, iterator or collection. TLDR: If only the reference is used, pass a reference. More importantly: if the object is used, move. It can sometime help avoid a clone. Same logic for iterator vs collection