Lines Matching refs:F
40 //only the requirements for the return type of function F are changed
41 template<typename F>
42 task_handle defer(F&& f);
44 //only the requirements for the return type of function F are changed
45 template<typename F>
46 task_group_status run_and_wait(const F& f);
48 //only the requirements for the return type of function F are changed
49 template<typename F>
50 void run(F&& f);
61 .. cpp:function:: template<typename F> task_handle defer(F&& f)
63 As an optimization hint, ``F`` might return a ``task_handle``, which task object can be executed ne…
68 .. cpp:function:: template<typename F> task_group_status run_and_wait(const F& f)
70 As an optimization hint, ``F`` might return a ``task_handle``, which task object can be executed ne…
76 .. cpp:function:: template<typename F> void run(F&& f)
78 As an optimization hint, ``F`` might return a ``task_handle``, which task object can be executed ne…