在一个遍历一个范围的foreach循环中,我想(1)前进,并且(2)对该范围中的下一个元素进行窥视而不前进。
import std.range: splitter;
import std.conv: parse;
foreach(numstr; line.splitter(',')) {
const int code = parse!int(numstr);
switch (code) {
case 1:
auto next1 = // currentRange.next()
// calling next() advances the range
auto next2 = // currentRange.next()
auto next3 = // currentRange.next()
// ...
case 2:
auto next1 = // currentRange.peek()
// calling peek() will not forward the range
currentRange.advanceBy(4);
// ...
// ...
}
}
答案 0 :(得分:2)
(1)前进
您可以使用popFront
手动扩大范围,但我不建议将其与foreach
循环结合使用。也许将foreach
替换为while (!range.empty)
?
(2)窥视范围中的下一个元素而不会前进
为此,请提供一份副本:
range.save.dropOne.front
range.save.drop(4).front
当然,拆分器将必须为每个窥视重做工作。为避免这种情况,请将其结果保存到数组中,或使用split
。