| 33 | stateVector states; |
| 34 | |
| 35 | typename stateVector::iterator Find(int position) { |
| 36 | State searchValue(position, T()); |
| 37 | return std::lower_bound(states.begin(), states.end(), searchValue); |
| 38 | } |
| 39 | |
| 40 | public: |
| 41 | SparseState(int positionFirst_=-1) { |
nothing calls this directly
no outgoing calls
no test coverage detected