| 3702 | #endif |
| 3703 | |
| 3704 | bool Value::isMember(char const* key, char const* cend) const |
| 3705 | { |
| 3706 | Value const* value = find(key, cend); |
| 3707 | return NULL != value; |
| 3708 | } |
| 3709 | bool Value::isMember(char const* key) const |
| 3710 | { |
| 3711 | return isMember(key, key + strlen(key)); |