Index: libcfa/src/collections/list.hfa
===================================================================
--- libcfa/src/collections/list.hfa	(revision 6cbc5a626cf54938256101fcd9c34533b8b3d28e)
+++ libcfa/src/collections/list.hfa	(revision 00675ed4c2f48a20d015179ca8dc1e151fce57a5)
@@ -10,6 +10,6 @@
 // Created On       : Wed Apr 22 18:00:00 2020
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Mar 24 11:25:34 2026
-// Update Count     : 98
+// Last Modified On : Fri Mar 27 08:02:56 2026
+// Update Count     : 99
 //
 
@@ -200,8 +200,12 @@
 	}
 
-	bool isEmpty( dlist( tE, tLinks ) & list ) {
+	bool empty( dlist( tE, tLinks ) & list ) {
 		tE * firstPtr = list.next;
 		if ( ORIGIN_TAG_QUERY(( size_t)firstPtr) ) firstPtr = 0p;
 		return firstPtr == 0p;
+	}
+
+	bool isEmpty( dlist( tE, tLinks ) & list ) {
+		return empty( list );
 	}
 
