Index: libcfa/src/collections/list.hfa
===================================================================
--- libcfa/src/collections/list.hfa	(revision 81ab5ebb3b497e7c713dd340f479f3d7e803ea4a)
+++ libcfa/src/collections/list.hfa	(revision bb9897ca4557693d413d432fa46eb70dbd3adbd0)
@@ -10,6 +10,6 @@
 // Created On       : Wed Apr 22 18:00:00 2020
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sun Mar 29 21:20:44 2026
-// Update Count     : 101
+// Last Modified On : Sun Mar 29 22:59:08 2026
+// Update Count     : 104
 //
 
@@ -188,5 +188,5 @@
 
 static inline forall( tE &, tLinks & | embedded( tE, tLinks, dlink( tE ) ) ) {
-	bool isListed( tE & node ) {
+	bool listed( tE & node ) {
 	  NOLOOSE(
 		verify( &node != 0p );
@@ -195,5 +195,5 @@
 	  )
 	  LOOSEONLY(
-		verify(false && "isListed is undefined");
+		verify(false && "listed is undefined");
 		return true;
 	  )
@@ -204,8 +204,4 @@
 		if ( ORIGIN_TAG_QUERY(( size_t)firstPtr) ) firstPtr = 0p;
 		return firstPtr == 0p;
-	}
-
-	bool isEmpty( dlist( tE, tLinks ) & list ) {		// deprecated
-		return empty( list );
 	}
 
@@ -339,9 +335,9 @@
 	}
 
-	bool isFirst( tE & node ) {
+	bool first( tE & node ) {
 		return recede( node );
 	}
 
-	bool isLast( tE & node ) {
+	bool last( tE & node ) {
 		return advance( node );
     }
Index: libcfa/src/collections/list2.hfa
===================================================================
--- libcfa/src/collections/list2.hfa	(revision 81ab5ebb3b497e7c713dd340f479f3d7e803ea4a)
+++ libcfa/src/collections/list2.hfa	(revision bb9897ca4557693d413d432fa46eb70dbd3adbd0)
@@ -19,6 +19,6 @@
 // Created On       : Wed Apr 22 18:00:00 2020
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sun Mar 29 21:47:53 2026
-// Update Count     : 12
+// Last Modified On : Sun Mar 29 22:59:31 2026
+// Update Count     : 15
 //
 
@@ -454,10 +454,5 @@
 	}
 
-	static inline bool isEmpty( dlist(tE, tLinks) & list ) __attribute__ ((deprecated));
-	static inline bool isEmpty( dlist(tE, tLinks) & list ) {
-		return empty( list );
-	}
-
-	static inline bool isListed( tE & e ) {
+	static inline bool listed( tE & e ) {
 	  NOLOOSE(
 		verify (&e != 0p);
@@ -469,5 +464,5 @@
 	  )
 	  LOOSEONLY(
-		verify(false && "isListed is undefined");
+		verify(false && "listed is undefined");
 		return true;
 	  )
@@ -516,5 +511,5 @@
 	}
 
-	bool isFirst( tE & node ) {
+	bool first( tE & node ) {
 		// Probable bug copied from master
 		// should be `! recede(node)`
@@ -524,5 +519,5 @@
 	}
 
-	bool isLast( tE & node ) {
+	bool last( tE & node ) {
 		// ditto, vice versa
 		return advance( node );
