The deque's RemoveAt() method now shifts the objects in the direction that produces the least amount of work

git-svn-id: file:///srv/devel/repo-conversion/nusu@161 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2009-07-13 20:22:59 +00:00
parent 58c3254260
commit 7885e86836
2 changed files with 31 additions and 25 deletions

View file

@ -126,6 +126,7 @@ namespace Nuclex.Support.Collections {
} else {
return (index - this.firstBlockStartIndex + lastBlock * this.blockSize);
}
}
}