Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 345 Bytes

File metadata and controls

11 lines (9 loc) · 345 Bytes

getlines_view implementation made for learning purposes

example:

std::ifstream input{ "input.txt" };
for (const auto& line: input | utils::views::getlines) {
    std::cout << line << '\n';
}