alpaka
Abstraction Library for Parallel Kernel Acceleration
Loading...
Searching...
No Matches
alpaka::concepts::HasGet Concept Reference

Concept to check if the given type has a get() function. More...

#include <concepts.hpp>

Concept definition

template<typename T>
concept HasGet = requires(T t) { t.get(); }
Concept to check if the given type has a get() function.
Definition concepts.hpp:26

Detailed Description

Concept to check if the given type has a get() function.

Definition at line 26 of file concepts.hpp.