#ifndef FWDLIB_HPP #define FWDLIB_HPP #include #include #include #include #include using namespace std; static void fwd_if(auto cond, auto ok, auto fail) { if (cond) ok(); else fail(); } static void fwd_getline(auto next) { if (cin.eof()) next(optional{}); if (string line; getline(cin, line)) next(optional{line}); else next(optional{}); } static void fwd_foreach(auto container, auto next) { for (auto &n : container) next(n); } static void fwd_some(auto option, auto ok, auto fail) { if (option) ok(std::move(option.value())); else fail(); } static void fwd_insert(auto container, auto elem, auto next) { container.insert(std::move(elem)); next(std::move(container)); } static void fwd_println(auto elem) { cout << elem << endl; } #endif /* FWDLIB_HPP */