Changeset 6b33e89 for libcfa/src/bits/collection.hfa
- Timestamp:
- Apr 25, 2025, 7:39:09 AM (8 months ago)
- Branches:
- master
- Children:
- 65bd3c2
- Parents:
- b195498
- File:
-
- 1 edited
-
libcfa/src/bits/collection.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/collection.hfa
rb195498 r6b33e89 26 26 // PUBLIC 27 27 28 void ?{}( Colable & co ) with( co ){29 next = 0p;28 void ?{}( Colable & co ) { 29 co.next = 0p; 30 30 } // post: ! listed() 31 31 32 32 // return true iff *this is an element of a collection 33 bool listed( Colable & co ) with( co ) {// pre: this != 034 return next != 0p;33 bool listed( Colable & co ) { // pre: this != 0 34 return co.next != 0p; 35 35 } 36 36
Note:
See TracChangeset
for help on using the changeset viewer.