Changes in libcfa/src/bits/collection.hfa [6b33e89:4b78d25]
- File:
-
- 1 edited
-
libcfa/src/bits/collection.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/collection.hfa
r6b33e89 r4b78d25 26 26 // PUBLIC 27 27 28 void ?{}( Colable & co ) {29 co.next = 0p;28 void ?{}( Colable & co ) with( co ) { 29 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 ) {// pre: this != 034 return co.next != 0p;33 bool listed( Colable & co ) with( co ) { // pre: this != 0 34 return next != 0p; 35 35 } 36 36
Note:
See TracChangeset
for help on using the changeset viewer.