|
|
|
|
|
by comex
3604 days ago
|
|
What you're talking about is std::function, a wrapper around raw lambda objects that performs dynamic dispatch. Since any lambda can be wrapped in std::function yet std::function, like all C++ types, must have a fixed size, it uses the heap as you say. If you stick to the raw lambdas, however, the compiler knows the size and doesn't need to use the heap. Only problem is that their type can't be named. In C++, you can work around this with auto. Without getting too much into it, Rust has a similar distinction between raw lambdas and Box<Fn(...)>. This library uses the former. |
|