1.. _make_node_set:
2
3``make_node_set`` function template
4===================================
5
6.. note::
7   To enable this feature, define the ``TBB_PREVIEW_FLOW_GRAPH_FEATURES`` macro to 1.
8
9.. contents::
10    :local:
11    :depth: 1
12
13Description
14***********
15
16The ``make_node_set`` function template creates a set of nodes that
17can be passed as arguments to ``make_edges``, ``follows`` and ``precedes`` functions.
18
19API
20***
21
22Header
23------
24
25.. code:: cpp
26
27    #include <oneapi/tbb/flow_graph.h>
28
29Syntax
30------
31
32.. code:: cpp
33
34    template <typename Node, typename... Nodes>
35    /*unspecified*/ make_node_set( Node& node, Nodes&... nodes );
36
37See Also
38********
39
40:ref:`make_edges`
41
42:ref:`follows_precedes`