Tencent / flare

Flare是广泛投产于腾讯广告后台的现代化C++开发框架,包含了基础库、RPC、各种客户端等。主要特点为易用性强、长尾延迟低。
Other
1.33k stars 200 forks source link

关于Function类的疑问 #135

Closed yinghaoyu closed 1 year ago

yinghaoyu commented 1 year ago

相关文件flare/base/function.h,flare没有使用std::function,而是采用自己实现的Function,请问有什么目的或者优势?

0x804d8000 commented 1 year ago

当时标准库还没有 https://en.cppreference.com/w/cpp/utility/functional/move_only_function/move_only_function

yinghaoyu commented 1 year ago

谢谢