src/list.c

changeset 1109
89ec23988b88
parent 1065
6eb7b54975ee
child 1111
78eeeb950883
equal deleted inserted replaced
1108:c3bde8ff1c0b 1109:89ec23988b88
479 ) { 479 ) {
480 CxIterator it = list->cl->iterator(list, index, true); 480 CxIterator it = list->cl->iterator(list, index, true);
481 it.base.mutating = true; 481 it.base.mutating = true;
482 return it; 482 return it;
483 } 483 }
484
485 void cxListFree(CxList *list) {
486 if (list == NULL) return;
487 list->cl->deallocate(list);
488 }

mercurial