| 877 | } |
| 878 | |
| 879 | py::UniqueObj DocumentObject::getAllWords() const |
| 880 | { |
| 881 | if (corpus->isIndependent()) return py::buildPyValue(getRawDoc()->words); |
| 882 | else return buildPyValueReorder(getBoundDoc()->words, getBoundDoc()->wOrder); |
| 883 | } |
| 884 | |
| 885 | const tomoto::SharedString& DocumentObject::getRaw() const |
| 886 | { |
nothing calls this directly
no test coverage detected