| 63 | } |
| 64 | } |
| 65 | bool Delete(int position) { |
| 66 | typename stateVector::iterator low = Find(position); |
| 67 | if (low != states.end()) { |
| 68 | states.erase(low, states.end()); |
| 69 | return true; |
| 70 | } |
| 71 | return false; |
| 72 | } |
| 73 | size_t size() const { |
| 74 | return states.size(); |
| 75 | } |
nothing calls this directly
no outgoing calls
no test coverage detected