This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <concepts> | |
#include <type_traits> | |
namespace executors { | |
/** | |
* @brief stop perfect forwarding if decay<T> is T, construct a wrapper of a non | |
* const lvalue reference instead |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <functional> | |
#include <memory> | |
#include <type_traits> | |
#include <utility> | |
namespace wjp{ | |
/* |