YACLib
C++ library for concurrent tasks execution
Loading...
Searching...
No Matches
node.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace yaclib::detail {
4
5/**
6 * Node class, used in intrusive data structure
7 */
8struct Node {
9 Node* next = nullptr; // valid for linear, for circular should be this
10};
11
12} // namespace yaclib::detail
Node class, used in intrusive data structure.
Definition node.hpp:8