473 {
475 *anotherIterator = anotherMonom.ListHead;
476 while (iterator && anotherIterator)
477 {
478 if (iterator->Value == anotherIterator->Value)
479 {
480 iterator = iterator->Next;
481 anotherIterator = anotherIterator->Next;
482 }
483 else if (iterator->Value < anotherIterator->Value)
484 {
485 iterator = iterator->Next;
486 }
487 else
488 {
489 break;
490 }
491 }
492
493 return !anotherIterator;
494 }
Singly linked-list node of a Monom's variable list, with a per-class slab allocator.