summaryrefslogtreecommitdiff
path: root/poc/component_generator/ops.hpp
blob: f4449d19ff715be427d8a5dcc9d6e895158a819a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

namespace kel {
/**
 * With this I technically could do code reduction in a cell step
 */

template<typename A, typename B>
struct Add {};

template<typename L, typename R>
struct Multiply {};
}