ChoppedVector: short-circuit opApply for elements after m_length

This commit is contained in:
Tobias Pankrath 2020-09-06 21:42:56 +02:00
parent 26060a6e0b
commit 2fd765ba07

View file

@ -187,11 +187,15 @@ struct ChoppedVector(T, size_t CHUNK_SIZE = 16*64*1024/nextPOT(T.sizeof)) {
int opApply(scope int delegate(size_t idx, ref T) @safe nothrow del)
{
size_t idx = 0;
outer:
foreach (c; m_chunks) {
if (c) {
foreach (i, ref t; *c)
foreach (i, ref t; *c) {
if (auto ret = del(idx+i, t))
return ret;
if (i + idx >= length)
break outer;
}
}
idx += chunkSize;
}
@ -201,11 +205,15 @@ struct ChoppedVector(T, size_t CHUNK_SIZE = 16*64*1024/nextPOT(T.sizeof)) {
int opApply(scope int delegate(size_t idx, ref const(T)) @safe nothrow del)
const {
size_t idx = 0;
outer:
foreach (c; m_chunks) {
if (c) {
foreach (i, ref t; *c)
foreach (i, ref t; *c) {
if (auto ret = del(idx+i, t))
return ret;
if (i + idx >= length)
break outer;
}
}
idx += chunkSize;
}