Viskores  1.0
Classes | Namespaces | Macros
ExecutionSignatureTagBase.h File Reference
#include <viskores/StaticAssert.h>
#include <viskores/internal/ExportMacros.h>
#include <type_traits>

Go to the source code of this file.

Classes

struct  viskores::exec::arg::ExecutionSignatureTagBase
 The base class for all tags used in an ExecutionSignature. More...
 

Namespaces

 viskores
 Groups connected points that have the same field value.
 
 viskores::exec
 Viskores Execution Environment.
 
 viskores::exec::arg
 

Macros

#define VISKORES_IS_EXECUTION_SIGNATURE_TAG(tag)
 Checks that the argument is a proper tag for an ExecutionSignature. More...
 

Macro Definition Documentation

◆ VISKORES_IS_EXECUTION_SIGNATURE_TAG

#define VISKORES_IS_EXECUTION_SIGNATURE_TAG (   tag)
Value:
::viskores::exec::arg::internal::ExecutionSignatureTagCheck<tag>::Valid, \
"Provided a type that is not a valid ExecutionSignature tag.")

Checks that the argument is a proper tag for an ExecutionSignature.

This is a handy concept check when modifying tags or dispatching to make sure that a template argument is actually an ExecutionSignature tag. (You can get weird errors elsewhere in the code when a mistake is made.)

VISKORES_STATIC_ASSERT_MSG
#define VISKORES_STATIC_ASSERT_MSG(condition, message)
Definition: StaticAssert.h:26