| 724 | //======================================================================= |
| 725 | |
| 726 | VT *CheckKey (const KT key) |
| 727 | { |
| 728 | Node *n = FindKey(key); |
| 729 | return n != NULL ? &n->Pair.Value : NULL; |
| 730 | } |
| 731 | |
| 732 | const VT *CheckKey (const KT key) const |
| 733 | { |
nothing calls this directly
no outgoing calls
no test coverage detected