Changeset 81ab5eb for libcfa/src/collections/list.hfa
- Timestamp:
- Mar 29, 2026, 9:52:51 PM (3 days ago)
- Branches:
- master
- Children:
- e6e250d
- Parents:
- 00675ed4
- File:
-
- 1 edited
-
libcfa/src/collections/list.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/list.hfa
r00675ed4 r81ab5eb 10 10 // Created On : Wed Apr 22 18:00:00 2020 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Mar 27 08:02:56202613 // Update Count : 9912 // Last Modified On : Sun Mar 29 21:20:44 2026 13 // Update Count : 101 14 14 // 15 15 … … 206 206 } 207 207 208 bool isEmpty( dlist( tE, tLinks ) & list ) { 208 bool isEmpty( dlist( tE, tLinks ) & list ) { // deprecated 209 209 return empty( list ); 210 210 } … … 413 413 // Transfer the "from" list to the end of this sequence; the "from" list is empty after the transfer. 414 414 // void transfer( dlist( tE, tLinks ) & to, dlist( tE, tLinks ) & from ) { 415 // if ( isEmpty( from ) ) return; // "from" list empty ?416 // if ( isEmpty( to ) ) { // "to" list empty ?415 // if ( empty( from ) ) return; // "from" list empty ? 416 // if ( empty( to ) ) { // "to" list empty ? 417 417 // root = from.root; 418 418 // } else { // "to" list not empty
Note:
See TracChangeset
for help on using the changeset viewer.