//********************************************************
// 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 <iostream>
#include <array>
#include <stacktrace>
 
bool find(const auto& coll, int idx)
{
  try {
    for (auto i = 0uz; i <= coll.size(); ++i) {
      if (coll.at(i) == idx) return true;    
    }
  }
  catch (const std::exception&) {
    // create stacktrace:
    std::stacktrace st = std::stacktrace::current();

    // print the stacktrace as a whole:
    std::cout << "STACKTRACE: \n" << st << '\n';
  }
  return false;
}

void callTest()
{
  std::array arr{47, 11};

  auto arrHas = [&arr] (int i) {
    return find(arr, i);
  };

  std::cout << (arrHas(42) ? "found 42\n" : "no 42\n");
}

int main()
{
  callTest();
}

