这里我想锁定两个size_t
数组的锁步import std.stdio;
import std.range;
import std.exception;
import std.conv;
struct zip(R,Q)
if(isInputRange!(R) && isInputRange!(Q))
{
R r;
Q q;
@property
const auto front() {
return tuple(r.front, q.front);
}
void popFront() {
r.popFront();
q.popFront();
}
@property
const bool empty() {
bool re = r.empty;
enforce(re == q.empty);
return re;
}
}
void main() {
size_t[] a = [0,1,2,3,4,5];
size_t[] b = [2,3,4,5,6,7];
foreach(size_t i, size_t j; zip!(size_t[],size_t[])(a,b)) {
writeln(to!string(i) ~ " " ~ to!string(j));
}
}
但这无法用
编译src/Interpreter.d(30): Error: cannot infer argument types
然而,当我更改foreach行以使用uint而不是size_t时(我在32位笔记本电脑上使用)
foreach(uint i, uint j; zip!(size_t[],size_t[])(a,b)) {
它编译并运行得很好。发生了什么事?
答案 0 :(得分:3)
这可能是一个错误。在v2.065.0中它不起作用,但它在最新的git-head开发版本中有效。