重复:https://stackoverflow.com/a/61819663/11998382
如果我们在编译时知道外部向量的大小,这应该是可能的。
你只需要编写下面python代码的c++ variadic-template等价物:
def transpose(rng_of_rng):
return zip(*rng_of_rng)
重复:https://stackoverflow.com/a/61819663/11998382
如果我们在编译时知道外部向量的大小,这应该是可能的。
你只需要编写下面python代码的c++ variadic-template等价物:
def transpose(rng_of_rng):
return zip(*rng_of_rng)
1条答案
按热度按时间bnl4lu3b1#
这就是它的行动:https://godbolt.org/z/oPdn89qnT
我发现barry's answer在尝试将向量转换为静态范围跨度时非常有用。
仔细想想,也许这个想法并不太好,因为它会超出元组的范围,我只使用
N=10
,但我怀疑元组大小是否真的很大。