Added serialization methods for vectors and matrices

git-svn-id: file:///srv/devel/repo-conversion/nusu@5 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2007-03-20 18:34:34 +00:00
parent d813756eed
commit c346a07ab0
3 changed files with 159 additions and 39 deletions

View file

@ -152,7 +152,7 @@ namespace Nuclex.Support.Collections {
private void bubbleUp(int index, ItemType item) {
int parent = getParent(index);
// note: (index > 0) means there is a parent
// Note: (index > 0) means there is a parent
while((index > 0) && (this.comparer.Compare(heap[parent], item) < 0)) {
heap[index] = heap[parent];
index = parent;