我个人不会将其改编为序列(我不确定您最初是如何将其改编为二元素融合序列的)。
无论如何,它都不会是通用的(因此您将对不同类型的参数(float、double、long double、boost::multiprecision::number<boost::multiprecision::cpp_dec_float<50>> 等)使用单独的适配。
这似乎是 Spirit customization points 的工作:
namespace boost { namespace spirit { namespace traits {
template <typename T>
struct extract_from_attribute<typename std::complex<T>, boost::fusion::vector2<T, T>, void>
{
typedef boost::fusion::vector2<T,T> type;
template <typename Context>
static type call(std::complex<T> const& attr, Context& context)
{
return { attr.real(), attr.imag() };
}
};
} } }
现在您可以将 any std::complex<T> 与期望融合序列的规则/表达式一起使用:
rule =
'(' << karma::double_ << ", " << karma::duplicate [ !karma::double_(0.0) << karma::double_ ] << ')'
| karma::double_ << karma::omit [ karma::double_ ];
注意方法
- 在发出输出之前,我使用
duplicate[] 对0.0 进行测试
- 在另一个分支上,我使用
omit 消耗虚部而不显示任何内容
这是一个完整的演示,Live On Coliru
#include <boost/spirit/include/karma.hpp>
#include <complex>
namespace boost { namespace spirit { namespace traits {
template <typename T>
struct extract_from_attribute<typename std::complex<T>, boost::fusion::vector2<T, T>, void>
{
typedef boost::fusion::vector2<T,T> type;
template <typename Context>
static type call(std::complex<T> const& attr, Context& context)
{
return { attr.real(), attr.imag() };
}
};
} } }
namespace karma = boost::spirit::karma;
int main()
{
karma::rule<boost::spirit::ostream_iterator, boost::fusion::vector2<double, double>()>
static const rule =
'(' << karma::double_ << ", " << karma::duplicate [ !karma::double_(0.0) << karma::double_ ] << ')'
| karma::double_ << karma::omit [ karma::double_ ];
std::vector<std::complex<double>> const values {
{ 123, 4 },
{ 123, 0 },
{ 123, std::numeric_limits<double>::infinity() },
{ std::numeric_limits<double>::quiet_NaN(), 0 },
{ 123, -1 },
};
std::cout << karma::format_delimited(*rule, '\n', values);
}
输出:
(123.0, 4.0)
123.0
(123.0, inf)
nan
(123.0, -1.0)