Opened 10 years ago
Last modified 7 years ago
#8356 new Feature Requests
Add move semantic push operations to lockfree data structures
Reported by: | viboes | Owned by: | timblechmann |
---|---|---|---|
Milestone: | To Be Determined | Component: | lockfree |
Version: | Boost 1.53.0 | Severity: | Problem |
Keywords: | Cc: |
Description
Some of the operation in the lockfree data structures could benefit from move semantics when the value_type is movable.
bool push(T &&);
The library should use Boost.Move in order to provide these operations on c++ compilers don't providing move semantics.
Note:
See TracTickets
for help on using tickets.
It seems like this would be fairly trivial and would be a nice feature for zero-copy applications.