| 946 | |
| 947 | |
| 948 | BOOLEAN list_iterator::is_at_end() const |
| 949 | { |
| 950 | if(actual==NULL) |
| 951 | // actual references no list |
| 952 | return(TRUE); |
| 953 | |
| 954 | if(actual->next==NULL) |
| 955 | // actual references dummy element |
| 956 | return(TRUE); |
| 957 | |
| 958 | // actual references a real element |
| 959 | return(FALSE); |
| 960 | } |
| 961 | |
| 962 | |
| 963 |
no outgoing calls
no test coverage detected