38 #ifndef __BASE_MEMOIZER_HH__
39 #define __BASE_MEMOIZER_HH__
43 #include <type_traits>
81 template <
typename Ret,
typename... Args>
101 auto key = std::make_tuple(args...);
102 if (
auto it =
cache.find(key); it !=
cache.end()) {
106 auto emplaced =
cache.emplace(key,
func(args...));
107 return emplaced.first->second;
136 constexpr
size_t num_args = std::tuple_size_v<std::decay_t<args_type>>;
137 iterateTupleArgs<size_t(0), num_args, size_t(1)>([&](
auto i) {
138 static_assert(!std::is_reference_v<
139 typename std::tuple_element<
144 template <
size_t Start,
size_t End,
size_t Inc,
class F>
148 if constexpr (Start < End) {
149 func(std::integral_constant<decltype(Start), Start>());
150 iterateTupleArgs<Start + Inc, End, Inc>(
func);
156 const std::function<Ret(Args...)>
func;
158 mutable std::map<args_type, ret_type>
cache;
164 #endif // __BASE_MEMOIZER_HH__