Index: libcfa/src/bits/containers.hfa
===================================================================
--- libcfa/src/bits/containers.hfa	(revision dac5500446efde6cc36f8ce0afb6e51224e7d2ab)
+++ libcfa/src/bits/containers.hfa	(revision 73973b686e82b8344cd01aa00e3ddd77f8c8813b)
@@ -274,4 +274,9 @@
 			return this.head != 0;
 		}
+
+		void move_to_front( __dllist(T) & src, __dllist(T) & dst, T & node ) {
+			remove    (src, node);
+			push_front(dst, node);
+		}
 	}
 	#undef next
