Changeset 00675ed4 for libcfa/src/collections/list.hfa
- Timestamp:
- Mar 27, 2026, 8:18:19 AM (6 days ago)
- Branches:
- master
- Children:
- 81ab5eb
- Parents:
- 4226eed
- File:
-
- 1 edited
-
libcfa/src/collections/list.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/list.hfa
r4226eed r00675ed4 10 10 // Created On : Wed Apr 22 18:00:00 2020 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Mar 24 11:25:34202613 // Update Count : 9 812 // Last Modified On : Fri Mar 27 08:02:56 2026 13 // Update Count : 99 14 14 // 15 15 … … 200 200 } 201 201 202 bool isEmpty( dlist( tE, tLinks ) & list ) {202 bool empty( dlist( tE, tLinks ) & list ) { 203 203 tE * firstPtr = list.next; 204 204 if ( ORIGIN_TAG_QUERY(( size_t)firstPtr) ) firstPtr = 0p; 205 205 return firstPtr == 0p; 206 } 207 208 bool isEmpty( dlist( tE, tLinks ) & list ) { 209 return empty( list ); 206 210 } 207 211
Note:
See TracChangeset
for help on using the changeset viewer.