commit ebe60787c3abf08e59b2de5e5085b5bcd0c42ae2
parent f295399e9049b7cc8c5524e38c69ae1f38d5b80b
Author: [email protected] <[email protected]>
Date: Fri, 9 Sep 2016 20:24:49 +0300
New expressions: printer and debug_printer
Diffstat:
1 file changed, 44 insertions(+), 0 deletions(-)
diff --git a/include/kfr/io/tostring.hpp b/include/kfr/io/tostring.hpp
@@ -141,3 +141,47 @@ struct representation<kfr::univector<T, Tag>>
}
};
}
+
+namespace kfr
+{
+
+namespace internal
+{
+struct expression_printer : output_expression
+{
+ template <typename T, size_t N>
+ void operator()(coutput_t, size_t index, const vec<T, N>& value)
+ {
+ for (size_t i = 0; i < N; i++)
+ {
+ if (index + i != 0)
+ print(", ");
+ print(value[i]);
+ }
+ }
+ template <typename InputExpr>
+ InputExpr& operator=(const InputExpr& input)
+ {
+ process<value_type_of<InputExpr>>(*this, input);
+ return input;
+ }
+};
+
+struct expression_debug_printer : output_expression
+{
+ template <typename T, size_t N>
+ void operator()(coutput_t, size_t index, const vec<T, N>& value)
+ {
+ println(fmtwidth<7>(index), ": (", value, ")");
+ }
+ template <typename InputExpr>
+ InputExpr& operator=(const InputExpr& input)
+ {
+ process<value_type_of<InputExpr>>(*this, input);
+ return input;
+ }
+};
+}
+inline internal::expression_printer printer() { return internal::expression_printer(); }
+inline internal::expression_debug_printer debug_printer() { return internal::expression_debug_printer(); }
+}