| 109 | |
| 110 | template <typename IndexType> |
| 111 | IndexType ones_complement(const IndexType r) { |
| 112 | return (-(r)-1); |
| 113 | } |
| 114 | |
| 115 | /* -------------------------------------------------------------------------- */ |
| 116 | const int Empty = -1; |
no outgoing calls
no test coverage detected