From 0cef986e6958a0a6a7e94e8256b0039709aed56b Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 6 Dec 2024 20:00:42 +0200 Subject: add trailing closures + Useful for guard statements, not entirely sure about the final syntax but at least they're possible --- lib/fwdlib.hpp | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) (limited to 'lib') diff --git a/lib/fwdlib.hpp b/lib/fwdlib.hpp index 3efac61..5c52f65 100644 --- a/lib/fwdlib.hpp +++ b/lib/fwdlib.hpp @@ -10,23 +10,15 @@ 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{}); + return next(optional{}); if (string line; getline(cin, line)) - next(optional{line}); + return next(optional{line}); else - next(optional{}); + return next(optional{}); } static void fwd_foreach(auto container, auto next) @@ -38,15 +30,15 @@ static void fwd_foreach(auto container, auto next) static void fwd_some(auto option, auto ok, auto fail) { if (option) - ok(std::move(option.value())); + return ok(std::move(option.value())); else - fail(); + return fail(); } static void fwd_insert(auto container, auto elem, auto next) { container.insert(std::move(elem)); - next(std::move(container)); + return next(std::move(container)); } static void fwd_println(auto elem) -- cgit v1.2.3