MCPcopy
hub / github.com/nltk/nltk / walk

Method walk

nltk/featstruct.py:449–455  ·  view source on GitHub ↗

Return an iterator that generates this feature structure, and each feature structure it contains. Each feature structure will be generated exactly once.

(self)

Source from the content-addressed store, hash-verified

447 return self._find_reentrances({})[id(self)]
448
449 def walk(self):
450 """
451 Return an iterator that generates this feature structure, and
452 each feature structure it contains. Each feature structure will
453 be generated exactly once.
454 """
455 return self._walk(set())
456
457 def _walk(self, visited):
458 """

Callers 9

global_replace.pyFile · 0.80
find_deprecated_defsFunction · 0.80
find_jars_within_pathFunction · 0.80
_pkg_statusMethod · 0.80
_find_collectionsFunction · 0.80
_find_packagesFunction · 0.80
find_corpus_fileidsFunction · 0.80
load_ace_dataFunction · 0.80

Calls 1

_walkMethod · 0.95