MCPcopy Index your code
hub / github.com/couchbase/couchbase-python-client / __init__

Method __init__

couchbase/mutation_state.py:29–34  ·  view source on GitHub ↗
(self, *docs,  # type: List[MutationResult]
                 **kwargs  # type: Dict[str, Any]
                 )

Source from the content-addressed store, hash-verified

27
28class MutationState:
29 def __init__(self, *docs, # type: List[MutationResult]
30 **kwargs # type: Dict[str, Any]
31 ):
32 self._sv = set()
33 if docs:
34 self.add_results(*docs, **kwargs)
35
36 def add_mutation_token(self, mut_token # type: MutationToken
37 ) -> None:

Callers

nothing calls this directly

Calls 1

add_resultsMethod · 0.95

Tested by

no test coverage detected