113 {
114 if (!anotherMonom.ListHead)
115 {
116 return;
117 }
118 else
119 {
122 *iteratorAnother = anotherMonom.ListHead;
123 while (iteratorAnother)
124 {
126 (*iterator)->Value = iteratorAnother->Value;
127
128 iterator = &((*iterator)->Next);
129 iteratorAnother = iteratorAnother->Next;
130 }
131 }
132 }
Singly linked-list node of a Monom's variable list, with a per-class slab allocator.