Hedgehog  3.1.0
A library to generate hybrid pipeline workflow systems
Loading...
Searching...
No Matches
hh::tool::ReceiverNode Concept Reference

Test if a node is a receiver node. More...

#include "concepts.h"

Concept definition

template<class NodeType>
std::is_base_of_v<behavior::Node, NodeType>
&& requires(NodeType *node){
typename NodeType::inputs_t;
std::is_base_of_v<behavior::MultiReceivers<typename NodeType::inputs_t>, NodeType
>;
}
Test if a node is a receiver node.
Definition: concepts.h:186

Detailed Description

Test if a node is a receiver node.

Template Parameters
NodeTypeType of node to test

Definition at line 186 of file concepts.h.