├── .gitignore ├── LICENSE ├── README.md ├── asm_comparison.png ├── example └── tostring_async.cpp ├── future_detail.h ├── modern_callback.h ├── use_future.h └── use_librf.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tearshark/modern_cb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tearshark/modern_cb/HEAD/README.md -------------------------------------------------------------------------------- /asm_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tearshark/modern_cb/HEAD/asm_comparison.png -------------------------------------------------------------------------------- /example/tostring_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tearshark/modern_cb/HEAD/example/tostring_async.cpp -------------------------------------------------------------------------------- /future_detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tearshark/modern_cb/HEAD/future_detail.h -------------------------------------------------------------------------------- /modern_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tearshark/modern_cb/HEAD/modern_callback.h -------------------------------------------------------------------------------- /use_future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tearshark/modern_cb/HEAD/use_future.h -------------------------------------------------------------------------------- /use_librf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tearshark/modern_cb/HEAD/use_librf.h --------------------------------------------------------------------------------