Queue: Leave only enqueue/dequeue/empty/opApply

This commit is contained in:
2017-01-11 18:24:50 +01:00
parent 291920b479
commit ab930657b6
7 changed files with 70 additions and 107 deletions

View File

@ -1341,7 +1341,7 @@ struct Vector(T)
}
body
{
vector[i .. j] = value;
vector[i .. j].fill(value);
return opSlice(i, j);
}