Changes in libcfa/src/bits/collection.hfa [4b78d25:6b33e89]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/collection.hfa
r4b78d25 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.