How to implement a stashing movable input iterator?
I have an input iterator that can walk through a file and parse records from it along the way. Each parsed record is stored in the iterator and owned by it (“stashed”).
I have an input iterator that can walk through a file and parse records from it along the way. Each parsed record is stored in the iterator and owned by it (“stashed”).