Iros
 
Loading...
Searching...
No Matches
unstoppable_token.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace di::concepts {
6template<typename T>
7concept UnstoppableToken = StoppableToken<T> && requires {
8 { T::stop_possible() } -> BooleanTestable;
9} && (!T::stop_possible());
10}
Definition operations.h:128
Definition stoppable_token.h:13
Definition unstoppable_token.h:7
Definition any_storable.h:9