--- a/src/list.c Sun Dec 14 16:15:57 2025 +0100 +++ b/src/list.c Sun Dec 14 16:21:09 2025 +0100 @@ -1097,19 +1097,19 @@ return 0; } -int cxListCloneSimple(CxList *dst, const CxList *src) { +int cxListCloneShallow(CxList *dst, const CxList *src) { return cxListClone(dst, src, use_simple_clone_func(src)); } -int cxListDifferenceSimple(CxList *dst, const CxList *minuend, const CxList *subtrahend) { +int cxListDifferenceShallow(CxList *dst, const CxList *minuend, const CxList *subtrahend) { return cxListDifference(dst, minuend, subtrahend, use_simple_clone_func(minuend)); } -int cxListIntersectionSimple(CxList *dst, const CxList *src, const CxList *other) { +int cxListIntersectionShallow(CxList *dst, const CxList *src, const CxList *other) { return cxListIntersection(dst, src, other, use_simple_clone_func(src)); } -int cxListUnionSimple(CxList *dst, const CxList *src, const CxList *other) { +int cxListUnionShallow(CxList *dst, const CxList *src, const CxList *other) { return cxListUnion(dst, src, other, use_simple_clone_func(src)); }