Access the bloom namespace.
(self)
| 70 | return cf |
| 71 | |
| 72 | def cms(self) -> CMSBloom: |
| 73 | """Access the bloom namespace.""" |
| 74 | |
| 75 | from .bf import CMSBloom |
| 76 | |
| 77 | cms = CMSBloom(client=self) |
| 78 | return cms |
| 79 | |
| 80 | def topk(self) -> TOPKBloom: |
| 81 | """Access the bloom namespace.""" |