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