| 196 | |
| 197 | template <class Functor> |
| 198 | TCont* Create( |
| 199 | Functor& f, |
| 200 | const char* name, |
| 201 | TMaybe<ui32> customStackSize = Nothing() |
| 202 | ) noexcept { |
| 203 | return Create((TContFunc)ContHelperFunc<Functor>, (void*)&f, name, customStackSize); |
| 204 | } |
| 205 | |
| 206 | template <typename T, void (T::*M)(TCont*)> |
| 207 | TCont* Create( |