Something like this (pseudocode): ```python Iter([1,2,3]).fold([], lambda acc, item: acc.append(item)) ```