Changeset e6e250d for libcfa/src/collections/list2.hfa
- Timestamp:
- Mar 29, 2026, 11:03:25 PM (3 days ago)
- Branches:
- master
- Parents:
- 81ab5eb
- File:
-
- 1 edited
-
libcfa/src/collections/list2.hfa (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/list2.hfa
r81ab5eb re6e250d 19 19 // Created On : Wed Apr 22 18:00:00 2020 20 20 // Last Modified By : Peter A. Buhr 21 // Last Modified On : Sun Mar 29 2 1:47:53202622 // Update Count : 1 221 // Last Modified On : Sun Mar 29 22:59:31 2026 22 // Update Count : 15 23 23 // 24 24 … … 454 454 } 455 455 456 static inline bool isEmpty( dlist(tE, tLinks) & list ) __attribute__ ((deprecated)); 457 static inline bool isEmpty( dlist(tE, tLinks) & list ) { 458 return empty( list ); 459 } 460 461 static inline bool isListed( tE & e ) { 456 static inline bool listed( tE & e ) { 462 457 NOLOOSE( 463 458 verify (&e != 0p); … … 469 464 ) 470 465 LOOSEONLY( 471 verify(false && " isListed is undefined");466 verify(false && "listed is undefined"); 472 467 return true; 473 468 ) … … 516 511 } 517 512 518 bool isFirst( tE & node ) {513 bool first( tE & node ) { 519 514 // Probable bug copied from master 520 515 // should be `! recede(node)` … … 524 519 } 525 520 526 bool isLast( tE & node ) {521 bool last( tE & node ) { 527 522 // ditto, vice versa 528 523 return advance( node );
Note:
See TracChangeset
for help on using the changeset viewer.