kokkos-utils 0.0.4
 
Loading...
Searching...
No Matches
Kokkos::utils::callbacks::IndexedEvent Concept Reference

Concept to constrain any event type that has a member variable event_id. More...

#include <Events.hpp>

Concept definition

template<typename EventType>
concept Kokkos::utils::callbacks::IndexedEvent = Event<EventType> && requires (EventType event) {
{ event.event_id } -> std::same_as<EventTraits::event_id_t&>;
}
Concept to constrain any event type that has a member variable event_id.
Definition Events.hpp:276

Detailed Description

Concept to constrain any event type that has a member variable event_id.

Definition at line 276 of file Events.hpp.