mgcpp
A C++ Math Library Based on CUDA
placeholder.hpp
Go to the documentation of this file.
1 #ifndef PLACEHOLDER_HPP
2 #define PLACEHOLDER_HPP
3 
5 
6 namespace mgcpp {
7 
8 struct placeholder_node_type;
9 
10 template <size_t PlaceholderID, typename ResultType>
11 using placeholder_node = generic_expr<placeholder_node_type,
12  PlaceholderID,
13  ResultType::template result_expr_type,
14  ResultType,
15  0>;
16 } // namespace mgcpp
17 
18 #endif // PLACEHOLDER_HPP
Definition: adapter_base.hpp:12
generic_expr< placeholder_node_type, PlaceholderID, ResultType::template result_expr_type, ResultType, 0 > placeholder_node
Definition: placeholder.hpp:15