| 108 | === Boost.Functional/Invoke === |
| 109 | |
| 110 | Provide a boost::invoke function implementation of the c++11 definition of INVOKE for c++11 and C++03 compilers based on the interface defined in [1]. [2] could be taken in consideration. |
| 111 | |
| 112 | This project could be mentored by Vicente J. Botet Escriba |
| 113 | |
| 114 | |
| 115 | [1] http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2013/n3727.html |
| 116 | |
| 117 | [2] https://github.com/boostorg/thread/tree/develop/include/boost/thread/detail/invoke.hpp |
| 118 | |
| 119 | |
| 120 | === Boost.Thread/WorkStealingThreadPool === |
| 121 | |
| 122 | Provide a boost::work_stealing_thread_pool class scheduling arbitrary functions based on the interface defined in [1]. [2] should be taken in consideration. |
| 123 | |
| 124 | [1] https://github.com/boostorg/thread/tree/develop/include/boost/thread/executors |
| 125 | |
| 126 | [2] http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2013/n3562.pdf |
| 127 | |
| 128 | This project could be mentored by Vicente J. Botet Escriba |
| 129 | |
| 130 | === Boost.Thread/SchedulerExecutor === |
| 131 | |
| 132 | Provide boost::scheduled_executor implementations base on the C++ proposal [1] and the draft implementation in [2]. |
| 133 | |
| 134 | [1] http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2013/n3562.pdf |
| 135 | |
| 136 | [2] https://github.com/boostorg/thread/tree/develop/include/boost/thread/executors |
| 137 | |
| 138 | This project could be mentored by Vicente J. Botet Escriba |
| 139 | |
| 140 | |
| 141 | === Boost.FixedPoint === |
| 142 | |
| 143 | Provide an implementation of a FixedPoint library based on [1]. |
| 144 | |
| 145 | A prototype with a different interface is available at [2] |
| 146 | |
| 147 | [1] http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3352.html |
| 148 | |
| 149 | [2] https://svn.boost.org/svn/boost/sandbox/fixed_point/ |
| 150 | |
| 151 | === Boost.Chrono/Date === |
| 152 | |
| 153 | Provide an implementation of a Date library based on [1]. |
| 154 | |
| 155 | A prototype with a different interface is available also at [2]. |
| 156 | |
| 157 | [1] https://svn.boost.org/svn/boost/sandbox/chrono_date/libs/date/doc/date.html |
| 158 | |
| 159 | [2] https://svn.boost.org/svn/boost/sandbox/chrono_date/ |
| 160 | |
| 161 | This project could be mentored by Vicente J. Botet Escriba |
| 162 | |
| 163 | === Boost.Exception/StackUnwinding === |
| 164 | |
| 165 | Make a real Boost library the StackUnwinding library [1] from Evgeny Panasyuk ready for review. |
| 166 | |
| 167 | [1] https://github.com/panaseleus/stack_unwinding#d-style-scope-guardsactions |
| 168 | |
| 169 | === Boost.Pipelines === |
| 170 | |
| 171 | Provide boost::pipelines implementations base on the C++ Pipelines proposal [1] and the Google implementation in [2] |
| 172 | |
| 173 | [1] http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3534.html |
| 174 | [2] https://code.google.com/p/google-concurrency-library/source/browse/include/pipeline.h |
| 175 | |
| 176 | This project could be mentored by Vicente J. Botet Escriba |
| 177 | |
| 178 | === Moving Boost to Boost.Move === |
| 179 | |
| 180 | There a re a lot of Boost libraries that don't support move semantics. |
| 181 | It would be nice if one student propose to adapt the some of the existing libraries. |
| 182 | |
| 183 | The idea is to use Boost.Move so that an emulation is provided for compilers not supporting rvalue references. |
| 184 | |
| 185 | Some of the libraries (let me know if I'm wrong are). My priority is given between [], lower numbers means higher priority. Of course others would have others priorities: |
| 186 | |
| 187 | C++11 |
| 188 | * [0] Tuple or * Fusion/tuple (it seems that it support or will support c++11 move semantics but don't use Boost.Move) |
| 189 | * [0] Bind |
| 190 | * [1] Function |
| 191 | * [2] SmartPtr |
| 192 | * [8] Array ? |
| 193 | |
| 194 | Accepted for C++14 |
| 195 | * [5] optional |
| 196 | |
| 197 | Having an active proposal for C++1y |
| 198 | * [3] Heaps |
| 199 | * [6] Any |
| 200 | * [7] Variant |
| 201 | |
| 202 | |
| 203 | Other |
| 204 | * [4] LockFree |
| 205 | * [9] Parameters |
| 206 | * [10] Signals? |
| 207 | |
| 208 | Please help me to complete this list. |
| 209 | |
| 210 | Adding constexpr and noexcept would be welcome also. |
| 211 | |
| 212 | This project could be mentored by Vicente J. Botet Escriba |
| 213 | |