MCPcopy Create free account
hub / github.com/ashvardanian/StringZilla / Strs_get_tape

Function Strs_get_tape

python/stringzilla.c:1873–1879  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1871}
1872
1873static PyObject *Strs_get_tape(Strs *self, void *closure) {
1874 // Ensure we're in tape layout
1875 if (!Strs_ensure_tape_layout(self)) return NULL;
1876 // Return self to allow chaining: strs.tape.tape_address
1877 Py_INCREF(self);
1878 return (PyObject *)self;
1879}
1880
1881static PyObject *Strs_get_offsets_are_large(Strs *self, void *closure) {
1882 if (!Strs_ensure_tape_layout(self)) return NULL;

Callers

nothing calls this directly

Calls 1

Strs_ensure_tape_layoutFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…