concept to check if a type supports bounded work-stealing queue operations More...
#include <taskflow/core/wsq.hpp>
concept to check if a type supports bounded work-stealing queue operations
A type Q satisfies BoundedWSQLike if it exposes the three core operations required by a bounded work-stealing queue: owner-side pop, thief-side steal, and a fallible owner-side push.
Q::value_type must be definedq.pop() must be validq.steal() must be validq.try_push(v) must return bool