This repository is for an implementation of the P2300 specification. As the specification is currently still a bit in flux the currently worked on version is used. The primary objective is to locate issues with the specification. Issues can be reported on the P2300 issue tracker.
-
operation_state
template <class S> concept operation_state = destructible<S> && is_object_v<S> && requires(S& s) { { execution::start(s) } noexcept; } ;