//********************************************************
// The following code example is taken from the book
//  C++23 - The Complete Guide
//  by Nicolai M. Josuttis (www.josuttis.com)
//  https://www.cppstd23.com
//
// The code is licensed under a
//  Creative Commons Attribution 4.0 International License
//  https://creativecommons.org/licenses/by/4.0/
//********************************************************


#include <print>
#include <vector>
#include <list>
#include <ranges>

void print(const auto& rg)
{
  for (const auto& elem : rg) {
    std::print("{} ", elem);
  }
  std::println("");
}

int main()
{
  std::vector<int> vec = {1, 2, 3, 4, 1, 2, 3, 4};
  std::list<int> lst = {1, 2, 3, 4, 1, 2, 3, 4};

  // some underlying ranges might not work:
  print(vec | std::views::drop(2));                               // OK
  print(lst | std::views::drop(2));                               // ERROR

  // some compositions might not work:
  print(vec | std::views::drop(1));                               // OK
  print(vec | std::views::lazy_split(3));                         // OK
  print(vec | std::views::drop(1) | std::views::lazy_split(3));   // OK
  print(vec | std::views::lazy_split(3) | std::views::drop(1));   // ERROR
}

