Dash Core Source Documentation (0.16.0.1)

Find detailed information regarding the Dash Core source code.

free_list_node.hpp
Go to the documentation of this file.
1 //
2 // immer: immutable data structures for C++
3 // Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
4 //
5 // This software is distributed under the Boost Software License, Version 1.0.
6 // See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
7 //
8 
9 #pragma once
10 
11 #include <immer/heap/with_data.hpp>
12 
13 namespace immer {
14 
16 {
18 };
19 
20 template <typename Base>
22  : with_data<free_list_node, Base>
23 {};
24 
25 } // namespace immer
free_list_node * next
Released under the MIT license