| 129 | return -1; |
| 130 | } |
| 131 | int Array::Get(int index) |
| 132 | { |
| 133 | if(index>=0 && index<length) |
| 134 | return A[index]; |
| 135 | return -1; |
| 136 | } |
| 137 | void Array::Set(int index,int x) |
| 138 | { |
| 139 | if(index>=0 && index< length) |
nothing calls this directly
no outgoing calls
no test coverage detected