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

Test if a node is a sender node. More...

#include "concepts.h"

Concept definition

template<class NodeType>
std::is_base_of_v<behavior::Node, NodeType>
&& requires(NodeType *node){
typename NodeType::outputs_t;
std::is_base_of_v<behavior::MultiSenders<typename NodeType::outputs_t>, NodeType
>;
}
Test if a node is a sender node.
Definition: concepts.h:175

Detailed Description

Test if a node is a sender node.

Template Parameters
NodeTypeType of node to test

Definition at line 175 of file concepts.h.