diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-09 23:00:01 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-09 23:00:01 +0200 |
commit | 2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c (patch) | |
tree | 3cef502c8bd0dfad3b6a119efef6b71bba8d1e5b /lib | |
parent | 598be4cd1bdd79e4859ae30291f4d65682cc672a (diff) | |
download | fwd-2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c.tar.gz fwd-2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c.zip |
initial ptr stuff
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fwdlib.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/fwdlib.hpp b/lib/fwdlib.hpp index bb5084c..623dc13 100644 --- a/lib/fwdlib.hpp +++ b/lib/fwdlib.hpp @@ -40,6 +40,14 @@ static void fwd_copy(auto n, auto next) return next(n, n); } +static void fwd_null(auto *x, auto fail, auto ok) +{ + if (x) + return ok(*x); + else + return fail(); +} + static void fwd_insert(auto container, auto elem, auto next) { container.insert(std::move(elem)); @@ -51,4 +59,10 @@ static void fwd_println(auto elem) cout << elem << endl; } +static void fwd_intalloc(auto ok) +{ + int *p = new int{20}; + ok(p); +} + #endif /* FWDLIB_HPP */ |