Currently the IClient interface has a method contains that accepts a string and checks if that key is present in the wrapped key/value store. This works well, but as we move users to using IHandles, there is more implicit name mangling that may go on under the hood. It would also be nice to have the handles check for both the existence of its key and metakey in the key value store and iff both are present is a truthy value returned.
Currently the
IClientinterface has a methodcontainsthat accepts a string and checks if that key is present in the wrapped key/value store. This works well, but as we move users to usingIHandles, there is more implicit name mangling that may go on under the hood. It would also be nice to have the handles check for both the existence of itskeyandmetakeyin the key value store and iff both are present is a truthy value returned.