diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-26 18:49:21 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-26 18:49:21 -0500 |
commit | 1eefd5f51c228db8d29d64714521d5ea24e43b33 (patch) | |
tree | 02b8e4ddb7ccce2fe7365209293222fce5a7d5b2 /source/types.hpp | |
parent | 1c097a3f53e9123d3cbb279f51cf31eff5742a57 (diff) |
concise wordwrap
Diffstat (limited to 'source/types.hpp')
-rw-r--r-- | source/types.hpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/source/types.hpp b/source/types.hpp index fd0b81e..9627a47 100644 --- a/source/types.hpp +++ b/source/types.hpp @@ -100,13 +100,10 @@ struct WordSet * and used for a word's definition. */ template<auto... funcs> -auto WordWrap = [] { - constexpr static Func list[1] = { - +[] { (funcs(), ...); } - }; - - return list; -}; +constexpr auto WordWrap = []() noexcept { + constexpr static auto wrapper = +[] { (funcs(), ...); }; + return &wrapper; +}(); enum class Error : int { none = 1, |