| 213 | } |
| 214 | |
| 215 | bool error() const noexcept { |
| 216 | call_status cs = status(); |
| 217 | return cs != call_status::ok && cs != call_status::yielded; |
| 218 | } |
| 219 | |
| 220 | bool runnable() const noexcept { |
| 221 | return base_t::valid() && (status() == call_status::yielded); |
nothing calls this directly
no outgoing calls
no test coverage detected